Free buffer before returning from cd9660_write_path_table to avoid
leaking it after returning from the function MFC after: 1 week PR: 203647 Submitted by: Thomas Schmitt <scdbackup@gmx.net> Coverity CID: 978431 Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
2f9ec994bc
commit
b73321f086
@ -165,7 +165,7 @@ cd9660_write_path_table(FILE *fd, off_t sector, int mode)
|
||||
diskStructure.pathTableLength);
|
||||
unsigned char *buffer;
|
||||
unsigned char *buffer_head;
|
||||
int len;
|
||||
int len, ret;
|
||||
path_table_entry temp_entry;
|
||||
cd9660node *ptcur;
|
||||
|
||||
@ -213,8 +213,10 @@ cd9660_write_path_table(FILE *fd, off_t sector, int mode)
|
||||
ptcur = ptcur->ptnext;
|
||||
}
|
||||
|
||||
return cd9660_write_filedata(fd, sector, buffer_head,
|
||||
ret = cd9660_write_filedata(fd, sector, buffer_head,
|
||||
path_table_sectors);
|
||||
free(buffer);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user