mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-23 12:36:51 +03:00
Avoid trying to mmap zero-length files.
Remove buf size limit in mmap case: prevented processing entire file.
This commit is contained in:
parent
d5e1616a45
commit
c22fbf9377
@ -256,7 +256,7 @@ static void fetch_file_process_plain(struct fetch_file_context *ctx,
|
||||
{
|
||||
#ifdef HAVE_MMAP
|
||||
fetch_msg msg;
|
||||
char *buf;
|
||||
char *buf = NULL;
|
||||
size_t buf_size;
|
||||
|
||||
int fd; /**< The file descriptor of the object */
|
||||
@ -279,17 +279,17 @@ static void fetch_file_process_plain(struct fetch_file_context *ctx,
|
||||
|
||||
/* set buffer size */
|
||||
buf_size = fdstat->st_size;
|
||||
if (buf_size > FETCH_FILE_MAX_BUF_SIZE)
|
||||
buf_size = FETCH_FILE_MAX_BUF_SIZE;
|
||||
|
||||
/* allocate the buffer storage */
|
||||
buf = mmap(NULL, buf_size, PROT_READ, MAP_SHARED, fd, 0);
|
||||
if (buf == MAP_FAILED) {
|
||||
msg.type = FETCH_ERROR;
|
||||
msg.data.error = "Unable to map memory for file data buffer";
|
||||
fetch_file_send_callback(&msg, ctx);
|
||||
close(fd);
|
||||
return;
|
||||
if (buf_size > 0) {
|
||||
buf = mmap(NULL, buf_size, PROT_READ, MAP_SHARED, fd, 0);
|
||||
if (buf == MAP_FAILED) {
|
||||
msg.type = FETCH_ERROR;
|
||||
msg.data.error = "Unable to map memory for file data buffer";
|
||||
fetch_file_send_callback(&msg, ctx);
|
||||
close(fd);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/* fetch is going to be successful */
|
||||
@ -327,7 +327,8 @@ static void fetch_file_process_plain(struct fetch_file_context *ctx,
|
||||
|
||||
fetch_file_process_aborted:
|
||||
|
||||
munmap(buf, buf_size);
|
||||
if (buf != NULL)
|
||||
munmap(buf, buf_size);
|
||||
close(fd);
|
||||
#else
|
||||
fetch_msg msg;
|
||||
|
Loading…
Reference in New Issue
Block a user