]> git.deb.at Git - pkg/abook.git/commitdiff
malloc -> xmalloc changes
authorJaakko Heinonen <jheinonen@users.sourceforge.net>
Tue, 9 Dec 2003 07:19:08 +0000 (07:19 +0000)
committerJaakko Heinonen <jheinonen@users.sourceforge.net>
Tue, 9 Dec 2003 07:19:08 +0000 (07:19 +0000)
misc.c

diff --git a/misc.c b/misc.c
index f54b1c90b45c5cc3bdc7efdf1db2f264c39345f8..df853bca38674d56851cf349769dfc50ba388a3e 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -90,7 +90,7 @@ mkstr (const char *format, ... )
 #ifdef ABOOK_SRC
                (char *) abook_malloc (size);
 #else
-               (char *) malloc (size);
+               (char *) xmalloc (size);
 #endif
        
        assert(format != NULL);
@@ -114,7 +114,7 @@ mkstr (const char *format, ... )
 #ifdef ABOOK_SRC
                        (char *) abook_realloc (buffer, size);
 #else
-                       (char *) realloc (buffer, size);
+                       (char *) xrealloc (buffer, size);
 #endif
        }
 }
@@ -142,7 +142,7 @@ strconcat (const char *str, ...)
 #ifdef ABOOK_SRC
        abook_malloc(l);
 #else
-       malloc(l);
+       xmalloc(l);
 #endif
        if(concat == NULL)
                return NULL;
@@ -204,8 +204,8 @@ my_getcwd()
 
 #define INITIAL_SIZE   128
 #ifndef ABOOK_SRC
-#      define abook_malloc(X) malloc(X)
-#      define abook_realloc(X, XX) realloc(X, XX)
+#      define abook_malloc(X) xmalloc(X)
+#      define abook_realloc(X, XX) xrealloc(X, XX)
 #endif
 
 char *