diff options
author | Keith Packard <keithp@keithp.com> | 2010-11-10 16:58:21 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-11-10 16:58:21 -0800 |
commit | 4ed4915bc0fbe9b4419ca4a0d4e43c2fee032ae9 (patch) | |
tree | e4ea374adb5e3bf00eeddcd8c35a6e4063a34c03 /miext | |
parent | 291c39dfef84d1b204d7f5e63e925dee2dbdaca7 (diff) | |
parent | ec1bfbc66926130e1153facc3b92ee175f1cb6b6 (diff) |
Merge remote branch 'whot/for-keith'
Diffstat (limited to 'miext')
-rw-r--r-- | miext/rootless/rootlessScreen.c | 3 | ||||
-rw-r--r-- | miext/rootless/rootlessWindow.c | 6 |
2 files changed, 3 insertions, 6 deletions
diff --git a/miext/rootless/rootlessScreen.c b/miext/rootless/rootlessScreen.c index 43b9cbb53..61d2f5dab 100644 --- a/miext/rootless/rootlessScreen.c +++ b/miext/rootless/rootlessScreen.c @@ -92,8 +92,7 @@ RootlessUpdateScreenPixmap(ScreenPtr pScreen) rowbytes = PixmapBytePad(pScreen->width, pScreen->rootDepth); if (s->pixmap_data_size < rowbytes) { - if (s->pixmap_data != NULL) - free(s->pixmap_data); + free(s->pixmap_data); s->pixmap_data_size = rowbytes; s->pixmap_data = malloc(s->pixmap_data_size); diff --git a/miext/rootless/rootlessWindow.c b/miext/rootless/rootlessWindow.c index 42ab8dab2..c4a32aa0d 100644 --- a/miext/rootless/rootlessWindow.c +++ b/miext/rootless/rootlessWindow.c @@ -1140,10 +1140,8 @@ FinishFrameResize(WindowPtr pWin, Bool gravity, int oldX, int oldY, } } - if (gResizeDeathBits != NULL) { - free(gResizeDeathBits); - gResizeDeathBits = NULL; - } + free(gResizeDeathBits); + gResizeDeathBits = NULL; if (gravity) { pScreen->CopyWindow = gResizeOldCopyWindowProc; |