commit | a27eee868e3aeebe37b954575b26c8ba448198e6 | [log] [tgz] |
---|---|---|
author | Mike McCormack <mike@codeweavers.com> | Thu May 11 10:22:58 2006 +0900 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu May 11 12:10:20 2006 +0200 |
tree | 3597f42159e84bf3816b6a9308fc5c44ad7aef6d | |
parent | ff6885495b7d23c99a04e035752b06101ca0d182 [diff] |
wininet: Fix a typo (spotted by Coverity).
diff --git a/dlls/wininet/dialogs.c b/dlls/wininet/dialogs.c index 7fc6207..24c8506 100644 --- a/dlls/wininet/dialogs.c +++ b/dlls/wininet/dialogs.c
@@ -80,7 +80,7 @@ /* FIXME: perhaps it would be better to use InternetCrackUrl here */ p = strchrW(szBuf, ':'); - if(*p) + if (p) *p = 0; return TRUE;