]> git.sur5r.net Git - i3/i3/commitdiff
render_con: initialize int sizes[children]
authorSascha Kruse <knopwob@googlemail.com>
Mon, 10 Dec 2012 18:13:05 +0000 (19:13 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 24 Dec 2012 14:28:17 +0000 (15:28 +0100)
This fixes a clang-analyzer warning

src/render.c

index 1216241b49af184a8e2ef45cdf997768b6f54af0..476d1ca8e1fa4bc909e856e7ee88d3e79517d06c 100644 (file)
@@ -202,6 +202,7 @@ void render_con(Con *con, bool render_fullscreen) {
 
     /* precalculate the sizes to be able to correct rounding errors */
     int sizes[children];
+    memset(sizes, 0, children*sizeof(int));
     if ((con->layout == L_SPLITH || con->layout == L_SPLITV) && children > 0) {
         assert(!TAILQ_EMPTY(&con->nodes_head));
         Con *child;