Package: tuxpuck Severity: minor Tags: patch User: pkg-llvm-t...@lists.alioth.debian.org Usertags: clang-ftbfs
Hello, Using the rebuild infrastructure, your package fails to build with clang (instead of gcc). We detected this kinf of error: http://clang.debian.net/status.php?version=3.4.2&key=SOMETIMES_UNINITIALIZED Full build log is available here: http://clang.debian.net/logs/2014-06-16/tuxpuck_0.8.2-5_unstable_clang.log Thanks, Alexander -- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
--- tuxpuck-0.8.2/utils/ttf2font.c 2002-11-08 13:50:29.000000000 +0300 +++ tuxpuck-0.8.2-my/utils/ttf2font.c 2014-06-29 01:58:26.593217981 +0400 @@ -47,7 +47,8 @@ { FT_Library ftl; FT_Face face; - FT_UInt xsize, ysize; + FT_UInt xsize = 0; + FT_UInt ysize = 0; unsigned char ch; FILE *out = NULL;