File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4591,22 +4591,22 @@ static void js_free_cstring(JSRuntime *rt, const void *ptr)
45914591
45924592void JS_FreeCString(JSContext *ctx, const char *ptr)
45934593{
4594- return js_free_cstring(ctx->rt, ptr);
4594+ js_free_cstring(ctx->rt, ptr);
45954595}
45964596
45974597void JS_FreeCStringRT(JSRuntime *rt, const char *ptr)
45984598{
4599- return js_free_cstring(rt, ptr);
4599+ js_free_cstring(rt, ptr);
46004600}
46014601
46024602void JS_FreeCStringUTF16(JSContext *ctx, const uint16_t *ptr)
46034603{
4604- return js_free_cstring(ctx->rt, ptr);
4604+ js_free_cstring(ctx->rt, ptr);
46054605}
46064606
46074607void JS_FreeCStringRT_UTF16(JSRuntime *rt, const uint16_t *ptr)
46084608{
4609- return js_free_cstring(rt, ptr);
4609+ js_free_cstring(rt, ptr);
46104610}
46114611
46124612static int memcmp16_8(const uint16_t *src1, const uint8_t *src2, int len)
You can’t perform that action at this time.
0 commit comments