mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-10 19:10:48 +00:00
[dwm][PATCH] remove NULL guards for XFree
This commit is contained in:
parent
84b0361b65
commit
3567e59e20
3
dwm.c
3
dwm.c
@ -547,9 +547,7 @@ applyrules(Client *c)
|
|||||||
#endif // SWITCHTAG_PATCH
|
#endif // SWITCHTAG_PATCH
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (ch.res_class)
|
|
||||||
XFree(ch.res_class);
|
XFree(ch.res_class);
|
||||||
if (ch.res_name)
|
|
||||||
XFree(ch.res_name);
|
XFree(ch.res_name);
|
||||||
#if EMPTYVIEW_PATCH
|
#if EMPTYVIEW_PATCH
|
||||||
if(c->tags & TAGMASK) c->tags = c->tags & TAGMASK;
|
if(c->tags & TAGMASK) c->tags = c->tags & TAGMASK;
|
||||||
@ -2596,7 +2594,6 @@ scan(void)
|
|||||||
&& (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
|
&& (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
|
||||||
manage(wins[i], &wa);
|
manage(wins[i], &wa);
|
||||||
}
|
}
|
||||||
if (wins)
|
|
||||||
XFree(wins);
|
XFree(wins);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user