Commit 64137a4ab5250a907ef895f5416fa58199b278a0

Ran Benita 2019-12-27T13:52:51

utils: fix typo in strndup fallback Fixup 93a1305 - we will have CI for this soon. Signed-off-by: Ran Benita <ran@unusedvar.com>

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/utils.h b/src/utils.h
index acd191e..920db4c 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -119,7 +119,7 @@ strndup(const char *s, size_t n)
     char *p = malloc(len + 1);
     if (!p)
         return NULL;
-    memcpy(p, str, len);
+    memcpy(p, s, len);
     p[len] = '\0';
     return p;
 }