Alex Henrie : wpcap: Remove unused variable ptr from build_win32_description (cppcheck).
Module: wine Branch: master Commit: bd7d771433adc65fe554369d79395c8767135493 URL: https://source.winehq.org/git/wine.git/?a=commit;h=bd7d771433adc65fe554369d7... Author: Alex Henrie <alexhenrie24(a)gmail.com> Date: Sun Dec 19 21:54:51 2021 -0700 wpcap: Remove unused variable ptr from build_win32_description (cppcheck). Signed-off-by: Alex Henrie <alexhenrie24(a)gmail.com> Signed-off-by: Hans Leidekker <hans(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/wpcap/wpcap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/wpcap/wpcap.c b/dlls/wpcap/wpcap.c index 59e8f43f77c..b140deeb3d2 100644 --- a/dlls/wpcap/wpcap.c +++ b/dlls/wpcap/wpcap.c @@ -240,10 +240,10 @@ static char *build_win32_name( const char *source, const char *adapter_name ) static char *build_win32_description( const struct pcap_interface *unix_dev ) { int len = strlen(unix_dev->name) + 1; - char *ret, *ptr; + char *ret; if (unix_dev->description && unix_dev->description[0]) len += strlen(unix_dev->description) + 1; - if ((ret = ptr = malloc( len ))) + if ((ret = malloc( len ))) { if (unix_dev->description) {
participants (1)
-
Alexandre Julliard