]> mj.ucw.cz Git - libucw.git/commitdiff
Simplified stdupping of NULL strings.
authorPavel Charvat <pchar@ucw.cz>
Sun, 7 Nov 2010 14:08:01 +0000 (15:08 +0100)
committerPavel Charvat <pchar@ucw.cz>
Sun, 7 Nov 2010 14:08:01 +0000 (15:08 +0100)
ucw/alloc_str.c
ucw/lib.h
ucw/mempool-str.c
ucw/mempool.h

index 5b3d839253b1e5b7c0f25a3adb6d5ea395eb4332..a9543c5b96d459c86aefa489502f0e5683244ee0 100644 (file)
@@ -14,6 +14,8 @@
 char *
 xstrdup(const char *s)
 {
+  if (!s)
+    return NULL;
   uns l = strlen(s) + 1;
   return memcpy(xmalloc(l), s, l);
 }
index 0190c5a377c4cd2d02ed42c5f66874d65a0a1d1e..79843c0e9a65da364a719f5d82ee4945c97e8118 100644 (file)
--- a/ucw/lib.h
+++ b/ucw/lib.h
@@ -164,7 +164,7 @@ void *xrealloc(void *, uns);                        /** Reallocate memory and die() if there is none.
 void xfree(void *);                            /** Free memory allocated by xmalloc() or xrealloc(). **/
 
 void *xmalloc_zero(uns) LIKE_MALLOC;           /** Allocate memory and fill it by zeroes. **/
-char *xstrdup(const char *) LIKE_MALLOC;       /** Make a xmalloc()'ed copy of a string. **/
+char *xstrdup(const char *) LIKE_MALLOC;       /** Make a xmalloc()'ed copy of a string. Returns NULL for NULL string. **/
 
 /*** === Trivial timers (timer.c) ***/
 
index 136f5b4cc57a355f2b7d276e1e3527c137ed8f12..cb2466304a902147f7be3b52fd028257ba06a2d1 100644 (file)
@@ -16,6 +16,8 @@
 char *
 mp_strdup(struct mempool *p, const char *s)
 {
+  if (!s)
+    return NULL;
   uns l = strlen(s) + 1;
   char *t = mp_alloc_fast_noalign(p, l);
   memcpy(t, s, l);
index 7ac7f1667acef3a503a41c0661d2f73972402445..e0d2b43cc061b0cd50d09a81910f7bf872101b6e 100644 (file)
@@ -336,7 +336,7 @@ static inline void *mp_realloc_fast(struct mempool *pool, void *ptr, uns size)
 
 /**
  * Save the current state of a memory pool.
- * Do not call this function with an opened growing buffer. 
+ * Do not call this function with an opened growing buffer.
  **/
 static inline void mp_save(struct mempool *pool, struct mempool_state *state)
 {
@@ -384,7 +384,7 @@ void mp_pop(struct mempool *pool);
  * -----------------
  ***/
 
-char *mp_strdup(struct mempool *, const char *) LIKE_MALLOC;           /** Makes a copy of a string on a mempool. **/
+char *mp_strdup(struct mempool *, const char *) LIKE_MALLOC;           /** Makes a copy of a string on a mempool. Returns NULL for NULL string. **/
 void *mp_memdup(struct mempool *, const void *, uns) LIKE_MALLOC;      /** Makes a copy of a memory block on a mempool. **/
 /**
  * Concatenates all passed strings. The last parameter must be NULL.