Module: wine Branch: master Commit: aa61e519d57d534df51a8b42df6f853c305615a1 URL: https://source.winehq.org/git/wine.git/?a=commit;h=aa61e519d57d534df51a8b42d...
Author: Zebediah Figura z.figura12@gmail.com Date: Sat Jun 12 16:42:53 2021 -0500
server: Free the old process image name if a second process image is mapped (Valgrind).
Signed-off-by: Zebediah Figura z.figura12@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
server/mapping.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/server/mapping.c b/server/mapping.c index 9cb24a4213f..cd918224caa 100644 --- a/server/mapping.c +++ b/server/mapping.c @@ -376,6 +376,9 @@ static void add_process_view( struct thread *thread, struct memory_view *view ) /* main exe */ set_process_machine( process, view ); list_add_head( &process->views, &view->entry ); + + free( process->image ); + process->image = NULL; if (get_view_nt_name( view, &name ) && (process->image = memdup( name.str, name.len ))) process->imagelen = name.len; return;