From: Michel Dänzer Date: Thu, 6 Dec 2007 09:19:22 +0000 (+0100) Subject: Minor followup fixes for the previous commit. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=62f6e550138ebccbdeb8dd044eabf757d5482126;p=mesa.git Minor followup fixes for the previous commit. --- diff --git a/src/glx/x11/dri_glx.c b/src/glx/x11/dri_glx.c index 9c3a78b31b7..dab454e8e30 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! */