summaryrefslogtreecommitdiff
path: root/deps/uv/src/unix/proctitle.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/src/unix/proctitle.c')
-rw-r--r--deps/uv/src/unix/proctitle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/uv/src/unix/proctitle.c b/deps/uv/src/unix/proctitle.c
index 16b0523731..19214e5ec9 100644
--- a/deps/uv/src/unix/proctitle.c
+++ b/deps/uv/src/unix/proctitle.c
@@ -55,7 +55,7 @@ char** uv_setup_args(int argc, char** argv) {
/* Add space for the argv pointers. */
size += (argc + 1) * sizeof(char*);
- new_argv = malloc(size);
+ new_argv = uv__malloc(size);
if (new_argv == NULL)
return argv;
args_mem = new_argv;
@@ -97,6 +97,6 @@ int uv_get_process_title(char* buffer, size_t size) {
UV_DESTRUCTOR(static void free_args_mem(void)) {
- free(args_mem); /* Keep valgrind happy. */
+ uv__free(args_mem); /* Keep valgrind happy. */
args_mem = NULL;
}