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