mirror of
https://git.zx2c4.com/cgit
synced 2024-11-25 18:08:41 +00:00
shared.c: avoid SEGFAULT when checking for binary buffers
Before calling buffer_is_binary() we need to verify that the buffer is valid. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
ae1d4d75b2
commit
481ce5e298
4
shared.c
4
shared.c
@ -271,8 +271,8 @@ int cgit_diff_files(const unsigned char *old_sha1,
|
|||||||
*old_size = file1.size;
|
*old_size = file1.size;
|
||||||
*new_size = file2.size;
|
*new_size = file2.size;
|
||||||
|
|
||||||
if (buffer_is_binary(file1.ptr, file1.size) ||
|
if ((file1.ptr && buffer_is_binary(file1.ptr, file1.size)) ||
|
||||||
buffer_is_binary(file2.ptr, file2.size)) {
|
(file2.ptr && buffer_is_binary(file2.ptr, file2.size))) {
|
||||||
*binary = 1;
|
*binary = 1;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user