# HG changeset patch # User Anselm R Garbe # Date 1219046254 -3600 # Node ID 3d39dc3001ccd0e1d863e385ebf341864c5c5829 # Parent bca7a556aa039d4adcdde3fa418ca4125e3ac8e7 initialize trans with 0 diff -r bca7a556aa03 -r 3d39dc3001cc dwm.c --- a/dwm.c Thu Aug 14 22:35:52 2008 +0200 +++ b/dwm.c Mon Aug 18 08:57:34 2008 +0100 @@ -865,7 +865,7 @@ void manage(Window w, XWindowAttributes *wa) { Client *c, *t = NULL; - Window trans; + Window trans = 0; XWindowChanges wc; if(!(c = calloc(1, sizeof(Client))))