Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-09-09 14:17:51 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-09-09 14:18:37 +0300
commit42e15b9dd3ea8f6625d985190aa445b512cc3812 (patch)
treec55c4a5e8268f2888813ff745c1c5cd32d08d911 /extern/libredcode
parent9307f0898625fcc50b9060e8897efda28453cf3a (diff)
Fix T46051: Loading certain Jpeg causes system alert sound (Win32)
The issue was caused by RedCode library printing binary string to the terminal.
Diffstat (limited to 'extern/libredcode')
-rw-r--r--extern/libredcode/format.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/libredcode/format.c b/extern/libredcode/format.c
index 8c6cae5234e..9a3023fa2c0 100644
--- a/extern/libredcode/format.c
+++ b/extern/libredcode/format.c
@@ -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;
}