summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2009-01-07 23:07:01 -0200
committerPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2009-01-07 23:07:01 -0200
commit9a313fb03153eb764aab3e9cb9988b6603541637 (patch)
tree275e0a45bb59539a0ec5bfae2ad483e8a98ce654 /hw
parent49b93df8a3002db7196aa3fc1fd8dca1c12a55d6 (diff)
Don't call free, use xfree macro.
There are several other direct calls to free, check % egrep '\<free\(' `find . -name \*.c` but they are free'ing memory from explicit malloc calls. This one was not intended, and corrected, so that it would both, follow the conventions everywhere (and work on some libc that doesn't like free(0)), and make it easier to use malloc wrappers.
Diffstat (limited to 'hw')
-rw-r--r--hw/xfree86/common/xf86Config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xfree86/common/xf86Config.c b/hw/xfree86/common/xf86Config.c
index 198b20f52..a8b568f7f 100644
--- a/hw/xfree86/common/xf86Config.c
+++ b/hw/xfree86/common/xf86Config.c
@@ -620,9 +620,9 @@ configFiles(XF86ConfFilesPtr fileconf)
must_copy = FALSE;
}
/* xf86ValidateFontPath modifies its argument, but returns a copy of it. */
- temp_path = must_copy ? XNFstrdup(defaultFontPath) : defaultFontPath;
+ temp_path = must_copy ? xnfstrdup(defaultFontPath) : defaultFontPath;
defaultFontPath = xf86ValidateFontPath(temp_path);
- free(temp_path);
+ xfree(temp_path);
/* make fontpath more readable in the logfiles */
countDirs = 1;