We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29731f7 commit a649459Copy full SHA for a649459
crates/php/src/sapi.rs
@@ -214,7 +214,7 @@ pub extern "C" fn sapi_module_deactivate() -> c_int {
214
}
215
216
#[no_mangle]
217
-pub extern "C" fn sapi_module_ub_write(str: *const i8, str_length: usize) -> usize {
+pub extern "C" fn sapi_module_ub_write(str: *const c_char, str_length: usize) -> usize {
218
if str.is_null() || str_length == 0 {
219
return 0;
220
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@platformatic/php-node",
3
- "version": "1.0.2",
+ "version": "1.0.3",
4
"main": "index.js",
5
"types": "index.d.ts",
6
"napi": {
0 commit comments