Use g_malloc instead of directly using malloc.
authorMatthias Clasen <maclas@gmx.de>
Tue, 25 Feb 2003 23:20:16 +0000 (23:20 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 25 Feb 2003 23:20:16 +0000 (23:20 +0000)
2003-02-26  Matthias Clasen  <maclas@gmx.de>

* glib/gunidecomp.c (g_unicode_canonical_decomposition): Use
g_malloc instead of directly using malloc.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gunidecomp.c

index 49eac47..636d299 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-02-26  Matthias Clasen  <maclas@gmx.de>
+
+       * glib/gunidecomp.c (g_unicode_canonical_decomposition): Use
+       g_malloc instead of directly using malloc.
+
 2003-02-25  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add a couple of missing entries, thanks to Cedric
index 49eac47..636d299 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-26  Matthias Clasen  <maclas@gmx.de>
+
+       * glib/gunidecomp.c (g_unicode_canonical_decomposition): Use
+       g_malloc instead of directly using malloc.
+
 2003-02-25  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add a couple of missing entries, thanks to Cedric
index 49eac47..636d299 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-26  Matthias Clasen  <maclas@gmx.de>
+
+       * glib/gunidecomp.c (g_unicode_canonical_decomposition): Use
+       g_malloc instead of directly using malloc.
+
 2003-02-25  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add a couple of missing entries, thanks to Cedric
index 49eac47..636d299 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-26  Matthias Clasen  <maclas@gmx.de>
+
+       * glib/gunidecomp.c (g_unicode_canonical_decomposition): Use
+       g_malloc instead of directly using malloc.
+
 2003-02-25  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add a couple of missing entries, thanks to Cedric
index 49eac47..636d299 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-26  Matthias Clasen  <maclas@gmx.de>
+
+       * glib/gunidecomp.c (g_unicode_canonical_decomposition): Use
+       g_malloc instead of directly using malloc.
+
 2003-02-25  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add a couple of missing entries, thanks to Cedric
index 49eac47..636d299 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-26  Matthias Clasen  <maclas@gmx.de>
+
+       * glib/gunidecomp.c (g_unicode_canonical_decomposition): Use
+       g_malloc instead of directly using malloc.
+
 2003-02-25  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add a couple of missing entries, thanks to Cedric
index 5c6fc3d..a2211e1 100644 (file)
@@ -157,7 +157,7 @@ g_unicode_canonical_decomposition (gunichar ch,
       /* We've counted twice as many bytes as there are
         characters.  */
       *result_len = len / 2;
-      r = malloc (len / 2 * sizeof (gunichar));
+      r = g_malloc (len / 2 * sizeof (gunichar));
       
       for (i = 0; i < len; i += 2)
        {
@@ -167,7 +167,7 @@ g_unicode_canonical_decomposition (gunichar ch,
   else
     {
       /* Not in our table.  */
-      r = malloc (sizeof (gunichar));
+      r = g_malloc (sizeof (gunichar));
       *r = ch;
       *result_len = 1;
     }