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
Notes: blender-bot 2023-02-14 08:45:09 +01:00
Referenced by issue #46051, Loading certain Jpeg causes system alert sound (Win32)
1 changed files with 1 additions and 1 deletions

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;
}