initialize trans with 0 - dwm - My fork of dwm (frankenstein's monster)
(HTM) git clone git://git.drkhsh.at/dwm.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit bb01e5a16f430e8b4629bab426bacfdff87f1198
(DIR) parent 06f7eed103057e55201e143fd319afd4bd410bdb
(HTM) Author: Anselm R Garbe <garbeam@gmail.com>
Date: Mon, 18 Aug 2008 08:57:34 +0100
initialize trans with 0
Diffstat:
M dwm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/dwm.c b/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))))