@@ -106,11 +106,11 @@ copy(void *ptr) { CFWString *str = ptr; CFWString *new; - if ((new = cfw_new(cfw_string)) == NULL) + if ((new = cfw_new(cfw_string, NULL)) == NULL) return NULL; if ((new->data = malloc(str->len + 1)) == NULL) { cfw_unref(new); return NULL;