Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
strpprintf / spprintf
  • Loading branch information
arnaud-lb committed Jul 8, 2022
commit 04217ffc1c900aa6b92d6bfd15265bb4910a76fe
2 changes: 1 addition & 1 deletion Zend/zend.c
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ ZEND_API zend_string *zend_vstrpprintf(size_t max_len, const char *format, va_li
}

smart_str_0(&buf);
return buf.s;
return smart_str_finalize(&buf);
}
/* }}} */

Expand Down