Commit bb01e5a

Anselm R Garbe <garbeam@gmail.com>
2008-08-18 03:57:34
initialize trans with 0
1 parent 06f7eed
Changed files (1)
dwm.c
@@ -865,7 +865,7 @@ killclient(const Arg *arg) {
 void
 manage(Window w, XWindowAttributes *wa) {
 	Client *c, *t = NULL;
-	Window trans;
+	Window trans = 0;
 	XWindowChanges wc;
 
 	if(!(c = calloc(1, sizeof(Client))))