aboutsummaryrefslogtreecommitdiff
path: root/jim-aio.c
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2023-02-03 08:51:00 +1000
committerSteve Bennett <steveb@workware.net.au>2023-02-03 08:51:00 +1000
commita60bffc94f84969084a2625f701cf98790e92c4a (patch)
tree401770cf87b4923344808aac9450d477567474ae /jim-aio.c
parent46b109be9508b44983f3d5d9a2787a56b50b7cbc (diff)
downloadjimtcl-a60bffc94f84969084a2625f701cf98790e92c4a.zip
jimtcl-a60bffc94f84969084a2625f701cf98790e92c4a.tar.gz
jimtcl-a60bffc94f84969084a2625f701cf98790e92c4a.tar.bz2
Convert some errant malloc/free to Jim_Alloc()/Jim_Free()
Go through the Jim versions where it makes sense so we can add debugging or other features as required. Signed-off-by: Steve Bennett <steveb@workware.net.au>
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)) {