Skip to content

Commit

Permalink
- missed an occurrence of RETVAL_STRING
Browse files Browse the repository at this point in the history
  • Loading branch information
m6w6 committed Nov 5, 2005
1 parent db3e3e7 commit ea83e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/tidy/tidy.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ static void php_tidy_quick_repair(INTERNAL_FUNCTION_PARAMETERS, zend_bool is_fil
TidyBuffer output = {0};

tidySaveBuffer (TG(tdoc)->doc, &output);
RETVAL_STRING(output.bp, 1);
RETVAL_STRINGL(output.bp, output.size-1, 1);
tidyBufFree(&output);
} else {
RETVAL_FALSE;
Expand Down

0 comments on commit ea83e13

Please sign in to comment.