1

fixing lookup for large entries (more than 1kb)

This commit is contained in:
Alex Yatskov 2017-04-30 13:04:58 -07:00
parent f535527829
commit ea42fab71b

2
book.c
View File

@ -101,7 +101,7 @@ static char* book_read(EB_Book* book, EB_Hookset* hookset, const EB_Position* po
return NULL;
}
char data[1024] = {};
char data[10240] = {};
ssize_t data_length = 0;
EB_Error_Code error;