summaryrefslogtreecommitdiff
path: root/deps/uv/src/unix/netbsd.c
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2018-12-16 14:18:16 -0500
committercjihrig <cjihrig@gmail.com>2018-12-19 09:02:22 -0500
commit728b155870b69a83b806d8bee67aeb0fd0a9b2dd (patch)
treea15ca72c0ac6a6edd66f0845aa7779e0bbbea1f3 /deps/uv/src/unix/netbsd.c
parente1ab457490925ddbf9f234973c4338bd0690acb5 (diff)
downloadandroid-node-v8-728b155870b69a83b806d8bee67aeb0fd0a9b2dd.tar.gz
android-node-v8-728b155870b69a83b806d8bee67aeb0fd0a9b2dd.tar.bz2
android-node-v8-728b155870b69a83b806d8bee67aeb0fd0a9b2dd.zip
deps: upgrade to libuv 1.24.1
PR-URL: https://github.com/nodejs/node/pull/25078 Fixes: https://github.com/nodejs/node/issues/24521 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Diffstat (limited to 'deps/uv/src/unix/netbsd.c')
-rw-r--r--deps/uv/src/unix/netbsd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/uv/src/unix/netbsd.c b/deps/uv/src/unix/netbsd.c
index 4cfde1a586..a2a4e52154 100644
--- a/deps/uv/src/unix/netbsd.c
+++ b/deps/uv/src/unix/netbsd.c
@@ -87,7 +87,8 @@ int uv_exepath(char* buffer, size_t* size) {
/* Copy string from the intermediate buffer to outer one with appropriate
* length.
*/
- strlcpy(buffer, int_buf, *size);
+ /* TODO(bnoordhuis) Check uv__strscpy() return value. */
+ uv__strscpy(buffer, int_buf, *size);
/* Set new size. */
*size = strlen(buffer);