From 88201044ed7432ecd69fc6de6947d76f207bc3bb Mon Sep 17 00:00:00 2001 From: amcgoogan <105525867+amcgoogan@users.noreply.github.com> Date: Thu, 12 Dec 2024 15:23:36 -0800 Subject: [PATCH] win: plug uv_fs_event_start memory leak (#4647) Co-authored-by: Andrew McGoogan Fixes: https://github.com/nodejs/node/issues/52769 --- src/win/fs-event.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/win/fs-event.c b/src/win/fs-event.c index 7ab407e0..73e0de8e 100644 --- a/src/win/fs-event.c +++ b/src/win/fs-event.c @@ -253,6 +253,8 @@ short_path_done: } dir_to_watch = dir; + uv__free(short_path); + short_path = NULL; uv__free(pathw); pathw = NULL; }