diff options
author | walter harms <wharms@bfs.de> | 2014-06-07 15:17:27 +0200 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2016-10-19 21:40:29 +0200 |
commit | a98260726b8f878e72223899e21ad87882389e2d (patch) | |
tree | ecc8e90ab360d58bc785b86ec1f79a57165ac1b4 /nx-X11/lib/X11/lcWrap.c | |
parent | 1ff6961231eda8929406b93fe3d70071cbba2469 (diff) | |
download | nx-libs-a98260726b8f878e72223899e21ad87882389e2d.tar.gz nx-libs-a98260726b8f878e72223899e21ad87882389e2d.tar.bz2 nx-libs-a98260726b8f878e72223899e21ad87882389e2d.zip |
libX11: rm redundante NULL checks
This patch removes the last remaining NULL checks for Xfree()
Signed-off-by: Harms <wharms@bfs,de>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
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/lcWrap.c')
-rw-r--r-- | nx-X11/lib/X11/lcWrap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nx-X11/lib/X11/lcWrap.c b/nx-X11/lib/X11/lcWrap.c index b71de7abb..067c501ba 100644 --- a/nx-X11/lib/X11/lcWrap.c +++ b/nx-X11/lib/X11/lcWrap.c @@ -86,8 +86,7 @@ XSetLocaleModifiers( user_mods = getenv("XMODIFIERS"); mapped_mods = (*lcd->methods->map_modifiers) (lcd, user_mods, modifiers); if (mapped_mods) { - if (lcd->core->modifiers) - Xfree(lcd->core->modifiers); + Xfree(lcd->core->modifiers); lcd->core->modifiers = mapped_mods; } return mapped_mods; |