Commit 8a18836e authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

wpcap: Free wine_get_unix_file_name memory with HeapFree.

parent 2d4b588a
......@@ -135,7 +135,7 @@ void * CDECL pcap_dump_open( struct pcap *pcap, const char *filename )
params.name = unix_path;
params.ret = &dumper;
PCAP_CALL( dump_open, &params );
RtlFreeHeap( GetProcessHeap(), 0, unix_path );
HeapFree( GetProcessHeap(), 0, unix_path );
return dumper;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment