Fix T46051: Loading certain Jpeg causes system alert sound (Win32)

The issue was caused by RedCode library printing binary string to the terminal.
This commit is contained in:
Sergey Sharybin
2015-09-09 16:17:51 +05:00
parent 9307f08986
commit 42e15b9dd3

View File

@@ -78,7 +78,7 @@ static unsigned char* read_packet(FILE * fp, char * expect)
len = read_be32(len);
if (strcmp(expect, head) != 0) {
fprintf(stderr, "Read: %s, expect: %s\n", head, expect);
/* fprintf(stderr, "Read: %s, expect: %s\n", head, expect); */
return NULL;
}