]> err.no Git - pkg-config/commitdiff
2007-02-25 Tollef Fog Heen <tfheen@err.no>
authorTollef Fog Heen <tfheen@err.no>
Sun, 25 Feb 2007 14:12:40 +0000 (15:12 +0100)
committerTollef Fog Heen <tfheen@err.no>
Sun, 25 Feb 2007 14:12:40 +0000 (15:12 +0100)
* pkg.c (scan_dir): Use g_malloc, not malloc for pkgname.

ChangeLog
pkg.c

index 698a4ab8851b7be7bb1854ac6784aa44b66fdabb..b6ddc376ccf37cfcc6b32749cd6ce036ef015e8a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2007-02-25  Tollef Fog Heen  <tfheen@err.no>
 
+       * pkg.c (scan_dir): Use g_malloc, not malloc for pkgname.
+
        * Makefile.am: Add support for using the system glib.  Thanks to
        Peter Breitenlohner for the bug and the patch.  Freedesktop #9708
 
diff --git a/pkg.c b/pkg.c
index 928f0c92aa73991f95be71a19259b6d561b7c133..8592befe8865a6128ea34a9a3cf78a3712e6fda6 100644 (file)
--- a/pkg.c
+++ b/pkg.c
@@ -188,7 +188,7 @@ scan_dir (const char *dirname)
 
       if (ends_in_dotpc (dent->d_name))
         {
-          char *pkgname = malloc (len - 2);
+          char *pkgname = g_malloc (len - 2);
 
           debug_spew ("File '%s' appears to be a .pc file\n", dent->d_name);