Skip to content

Commit c7b7cc4

Browse files
committed
Fixed build
1 parent f1de275 commit c7b7cc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/dba/dba.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ static void php_dba_open(INTERNAL_FUNCTION_PARAMETERS, int persistent)
868868
info->path = pestrndup(opened_path->val, opened_path->len, persistent);
869869
}
870870
/* now store the name of the lock */
871-
info->lock.name = pestrdup(opened_path->val, opened_path->len, persistent);
871+
info->lock.name = pestrndup(opened_path->val, opened_path->len, persistent);
872872
zend_string_release(opened_path);
873873
}
874874
}

0 commit comments

Comments
 (0)