utils: fix typo in strndup fallback
[platform/upstream/libxkbcommon.git] / src / utils.h
index acd191e..920db4c 100644 (file)
@@ -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;
 }