mirror of
https://github.com/sheumann/hush.git
synced 2024-12-30 20:29:21 +00:00
Make sure there is a trailing '\0' when extracting to buffer.
This commit is contained in:
parent
5e66a26eaa
commit
cfeb08a193
@ -102,6 +102,7 @@ char *extract_archive(FILE *src_stream, FILE *out_stream, const file_header_t *f
|
|||||||
if (S_ISREG(file_entry->mode)) {
|
if (S_ISREG(file_entry->mode)) {
|
||||||
buffer = (char *) xmalloc(file_entry->size + 1);
|
buffer = (char *) xmalloc(file_entry->size + 1);
|
||||||
fread(buffer, 1, file_entry->size, src_stream);
|
fread(buffer, 1, file_entry->size, src_stream);
|
||||||
|
buffer[file_entry->size] = '\0';
|
||||||
archive_offset += file_entry->size;
|
archive_offset += file_entry->size;
|
||||||
return(buffer);
|
return(buffer);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user