]> git.notmuchmail.org Git - notmuch/commitdiff
xutil: Implement xstrndup without relying on strndup.
authorCarl Worth <cworth@cworth.org>
Tue, 1 Dec 2009 20:51:39 +0000 (12:51 -0800)
committerCarl Worth <cworth@cworth.org>
Tue, 1 Dec 2009 20:51:39 +0000 (12:51 -0800)
Since we need to do this for portability, (some systems don't have a
strndup function), we might as well do it unconditionally. There's
almost no disadvantage to doing so, and this has the advantages of not
requiring a configure-time check nor having two different
implementations, one of which would often be less tested.

TODO
lib/xutil.c

diff --git a/TODO b/TODO
index 1b8fb42ab7297e892b1e0c07fa19fbe50e607a7e..87f84a42935920d26c0503661288d6d1a2c0aa0b 100644 (file)
--- a/TODO
+++ b/TODO
@@ -41,8 +41,6 @@ Portability
 -----------
 Fix configure script to test each compiler warning we want to use.
 
-Implement strndup locally (or call talloc_strndup instead).
-
 Implement getline locally, (look at gnulib).
 
 Completion
index 6fa5eb0ddb49dfb12dcd0cf039d4165cd8f6f7cb..268225b8956690137ae471c82e4ef39de71c4a96 100644 (file)
@@ -18,7 +18,6 @@
  * Author: Carl Worth <cworth@cworth.org>
  */
 
-#define _GNU_SOURCE /* For strndup */
 #include "notmuch-private.h"
 
 #include <stdio.h>
@@ -84,11 +83,16 @@ xstrndup (const char *s, size_t n)
 {
     char *ret;
 
-    ret = strndup (s, n);
+    if (strlen (s) <= n)
+       n = strlen (s);
+
+    ret = malloc (n + 1);
     if (ret == NULL) {
        fprintf (stderr, "Out of memory.\n");
        exit (1);
     }
+    memcpy (ret, s, n);
+    ret[n] = '\0';
 
     return ret;
 }