aboutsummaryrefslogtreecommitdiff
path: root/jim-aio.c
diff options
context:
space:
mode:
Diffstat (limited to 'jim-aio.c')
-rw-r--r--jim-aio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/jim-aio.c b/jim-aio.c
index ea606cc..cb56826 100644
--- a/jim-aio.c
+++ b/jim-aio.c
@@ -865,12 +865,12 @@ static int aio_cmd_copy(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
if (count >= 16384 && bufp == buf) {
/* Heuristic check - for large copy speed-up */
buflen = 65536;
- bufp = malloc(buflen);
+ bufp = Jim_Alloc(buflen);
}
}
if (bufp != buf) {
- free(bufp);
+ Jim_Free(bufp);
}
if (JimCheckStreamError(interp, af) || JimCheckStreamError(interp, outf)) {