annotate src/os/win32/nginx_icon48.xpm @ 5245:711fa02afae8

Valgrind: supressed complaints about uninitialized bytes. Valgrind complains if we pass uninitialized memory to a syscall: ==36492== Syscall param sendmsg(msg.msg_iov[0]) points to uninitialised byte(s) ==36492== at 0x6B5E6A: sendmsg (in /usr/lib/system/libsystem_kernel.dylib) ==36492== by 0x10004288E: ngx_signal_worker_processes (ngx_process_cycle.c:527) ==36492== by 0x1000417A7: ngx_master_process_cycle (ngx_process_cycle.c:203) ==36492== by 0x100001F10: main (nginx.c:410) ==36492== Address 0x7fff5fbff71c is on thread 1's stack Even initialization of all members of the structure passed isn't enough, as there is padding which still remains uninitialized and results in Valgrind complaint. Note there is no real problem here as data from uninitialized memory isn't used.
author Maxim Dounin <mdounin@mdounin.ru>
date Wed, 05 Jun 2013 19:44:22 +0400
parents 37580bd13ca5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2734
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
1 /* XPM */
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
2 static char * nginx_xpm[] = {
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
3 "48 48 2 2",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
4 /* colors */
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
5 " c none",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
6 "GG c #009900",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
7 /* pixels */
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
8 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
9 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
10 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
11 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
12 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
13 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
14 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
15 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
16 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
17 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
18 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
19 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
20 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
21 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
22 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
23 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
24 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
25 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
26 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
27 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
28 " GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
29 " GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
30 " GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
31 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
32 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
33 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
34 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
35 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
36 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
37 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
38 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
39 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
40 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
41 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
42 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
43 " GGGGGGGGGGGGGGGG GGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
44 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
45 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
46 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
47 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
48 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
49 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
50 " GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
51 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
52 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
53 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
54 " ",
37580bd13ca5 add 48x48 icon
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
55 " ",