diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2007-12-06 10:19:22 +0100 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2007-12-06 10:19:22 +0100 |
commit | 62f6e550138ebccbdeb8dd044eabf757d5482126 (patch) | |
tree | 23f6588b4a869b46350322c1a7610af5462cd94f | |
parent | 17afc800c9b69997ae7ba52b67c021f68066e008 (diff) |
Minor followup fixes for the previous commit.
-rw-r--r-- | src/glx/x11/dri_glx.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/glx/x11/dri_glx.c b/src/glx/x11/dri_glx.c index 9c3a78b31b..dab454e8e3 100644 --- a/src/glx/x11/dri_glx.c +++ b/src/glx/x11/dri_glx.c @@ -241,7 +241,10 @@ static __DRIdriver *OpenDriver(const char *driverName) driver->name = __glXstrdup(driverName); driver->libpath = __glXstrdup(realDriverName); if (!driver->name || !driver->libpath) { - if (driver->name) XFree(driver->name); + if (driver->name) + Xfree(driver->name); + if (driver->libpath) + Xfree(driver->libpath); Xfree(driver); driver = NULL; break; /* out of memory! */ |