diff options
author | walter harms <wharms@bfs.de> | 2014-06-07 11:54:34 +0200 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2016-10-19 21:40:29 +0200 |
commit | dd6dc2ddfa8b0cb671711acb9d157de29a48c032 (patch) | |
tree | 27513fa34bce2e328c997093fb8225ab8b09d74f /nx-X11/lib/X11/XKBAlloc.c | |
parent | a98260726b8f878e72223899e21ad87882389e2d (diff) | |
download | nx-libs-dd6dc2ddfa8b0cb671711acb9d157de29a48c032.tar.gz nx-libs-dd6dc2ddfa8b0cb671711acb9d157de29a48c032.tar.bz2 nx-libs-dd6dc2ddfa8b0cb671711acb9d157de29a48c032.zip |
rm redundant null checks
remove more redundant NULL checks
note that _XkbFree() is really Xfree()
Signed-off-by: Harms <wharms@bfs,de>
Reviewed-by: RĂ©mi Cardona <remi@gentoo.org>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Backported-to-NX-by: Ulrich Sibiller <uli42@gmx.de>
Diffstat (limited to 'nx-X11/lib/X11/XKBAlloc.c')
-rw-r--r-- | nx-X11/lib/X11/XKBAlloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nx-X11/lib/X11/XKBAlloc.c b/nx-X11/lib/X11/XKBAlloc.c index a089ff46d..9c3430c1a 100644 --- a/nx-X11/lib/X11/XKBAlloc.c +++ b/nx-X11/lib/X11/XKBAlloc.c @@ -442,8 +442,7 @@ XkbAllocDeviceInfo(unsigned deviceSpec, unsigned nButtons, unsigned szLeds) devi->sz_leds = szLeds; devi->leds = _XkbTypedCalloc(szLeds, XkbDeviceLedInfoRec); if (!devi->leds) { - if (devi->btn_acts) - _XkbFree(devi->btn_acts); + _XkbFree(devi->btn_acts); _XkbFree(devi); return NULL; } |