Commit df0f32bb authored by Ken Thomases's avatar Ken Thomases Committed by Alexandre Julliard

dbghelp: Increase file read buffer size for calc_crc32.

parent 637827a2
......@@ -136,7 +136,7 @@ DWORD calc_crc32(int fd)
0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d
};
int i, r;
unsigned char buffer[256];
unsigned char buffer[8192];
DWORD crc = ~0;
lseek(fd, 0, SEEK_SET);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment