Skip to content

Commit 2f974f2

Browse files
committed
🔥
1 parent a22a82b commit 2f974f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

xz.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ PHP_FUNCTION(xzencode)
255255

256256
lzma_end(&strm);
257257

258-
RETURN_STRINGL(out, out_len, 0);
258+
RETURN_STRINGL(out, out_len);
259259
}
260260
/* }}} */
261261

@@ -314,7 +314,7 @@ PHP_FUNCTION(xzdecode)
314314

315315
lzma_end(&strm);
316316

317-
RETURN_STRINGL(out, out_len, 0);
317+
RETURN_STRINGL(out, out_len);
318318
}
319319
/* }}} */
320320

@@ -325,4 +325,4 @@ PHP_FUNCTION(xzdecode)
325325
* End:
326326
* vim600: sw=4 ts=4 fdm=marker
327327
* vim<600: sw=4 ts=4
328-
*/
328+
*/

0 commit comments

Comments
 (0)