diff options
Diffstat (limited to 'libX11/src/ModMap.c')
-rw-r--r-- | libX11/src/ModMap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libX11/src/ModMap.c b/libX11/src/ModMap.c index 78d635bf5..a809aa291 100644 --- a/libX11/src/ModMap.c +++ b/libX11/src/ModMap.c @@ -50,7 +50,7 @@ XGetModifierMapping(register Display *dpy) } else res = NULL; if ((! res) || (! res->modifiermap)) { - if (res) Xfree(res); + Xfree(res); res = (XModifierKeymap *) NULL; _XEatDataWords(dpy, rep.length); } else { @@ -114,8 +114,7 @@ int XFreeModifiermap(XModifierKeymap *map) { if (map) { - if (map->modifiermap) - Xfree(map->modifiermap); + Xfree(map->modifiermap); Xfree(map); } return 1; |