setupapi: Remove dead code (Clang).

Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
André Hentschel 2015-12-22 19:29:18 +01:00 committed by Alexandre Julliard
parent 67e5e8edf6
commit 9edfb14c6b
1 changed files with 1 additions and 3 deletions

View File

@ -126,11 +126,9 @@ static void concat_W( WCHAR *buffer, const WCHAR *src1, const WCHAR *src2, const
if (buffer[-1] != '\\') *buffer++ = '\\';
if (src3) while (*src3 == '\\') src3++;
}
if (src3)
{
strcpyW( buffer, src3 );
buffer += strlenW(buffer );
}
}