Workaround for VC++ bug

git-svn-id: http://voip.null.ro/svn/yate@997 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2006-08-15 14:39:33 +00:00
parent 9bb854fddd
commit 46d60e6195
1 changed files with 2 additions and 1 deletions

View File

@ -180,7 +180,8 @@ int findSep(const char* str, char sep, int offs)
str += offs;
bool inQ = false;
bool inU = false;
for (; char c = *str++ ; offs++) {
char c;
for (; c = *str++ ; offs++) {
if (inQ) {
if (c == '"')
inQ = false;