1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

[quickjs] Free response_text in xhr.c finalizer

This commit is contained in:
Witold Filipczyk 2024-07-24 18:40:30 +02:00
parent 2fd55215a7
commit 4dc436e26d

View File

@ -321,6 +321,7 @@ xhr_finalizer(JSRuntime *rt, JSValue val)
}
mem_free_if(x->responseURL);
mem_free_if(x->status_text);
mem_free_if(x->response_text);
struct xhr_listener *l;