From: Peter Hutterer Date: Tue, 3 May 2011 07:02:48 +0000 (+1000) Subject: Silence compiler warning X-Git-Url: https://diplodocus.org/git/xorg-xinput/commitdiff_plain/ea0db37521c0fce8599c1838e9a919bb3292d413?ds=sidebyside;hp=--cc Silence compiler warning Static analysis claims that ptr += size may assign garbage. But since the protocol requires format to be 8, 16 or 32, size should always have a valid value. Initialize to 0 to shut up clang. Signed-off-by: Peter Hutterer Reviewed-by: Jeremy Huddleston --- ea0db37521c0fce8599c1838e9a919bb3292d413 diff --git a/src/property.c b/src/property.c index f8b21c7..87f9fc6 100644 --- a/src/property.c +++ b/src/property.c @@ -59,7 +59,7 @@ print_property(Display *dpy, XDevice* dev, Atom property) int act_format; unsigned long nitems, bytes_after; unsigned char *data, *ptr; - int j, done = False, size; + int j, done = False, size = 0; name = XGetAtomName(dpy, property); printf("\t%s (%ld):\t", name, property);