Commit a2b7141a authored by Rolf Kalbermatter's avatar Rolf Kalbermatter Committed by Alexandre Julliard

Fix endless loop in StrPBrkW.

parent 4ed280fc
...@@ -1116,7 +1116,7 @@ LPSTR WINAPI StrPBrkA(LPCSTR lpszStr, LPCSTR lpszMatch) ...@@ -1116,7 +1116,7 @@ LPSTR WINAPI StrPBrkA(LPCSTR lpszStr, LPCSTR lpszMatch)
if (StrChrA(lpszMatch, *lpszStr)) if (StrChrA(lpszMatch, *lpszStr))
return (LPSTR)lpszStr; return (LPSTR)lpszStr;
lpszStr = CharNextA(lpszStr); lpszStr = CharNextA(lpszStr);
}; }
} }
return NULL; return NULL;
} }
...@@ -1132,12 +1132,12 @@ LPWSTR WINAPI StrPBrkW(LPCWSTR lpszStr, LPCWSTR lpszMatch) ...@@ -1132,12 +1132,12 @@ LPWSTR WINAPI StrPBrkW(LPCWSTR lpszStr, LPCWSTR lpszMatch)
if (lpszStr && lpszMatch && *lpszMatch) if (lpszStr && lpszMatch && *lpszMatch)
{ {
while (*lpszStr); while (*lpszStr)
{ {
if (StrChrW(lpszMatch, *lpszStr)) if (StrChrW(lpszMatch, *lpszStr))
return (LPWSTR)lpszStr; return (LPWSTR)lpszStr;
lpszStr = CharNextW(lpszStr); lpszStr = CharNextW(lpszStr);
} while (*lpszStr); }
} }
return NULL; return NULL;
} }
......
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