Unverified Commit 5508c228 authored by Brad Dunbar's avatar Brad Dunbar
Browse files

Remove unreachable branch.

parent 373a3384
...@@ -67,8 +67,6 @@ int stringmatchlen(const char *pattern, int patternLen, ...@@ -67,8 +67,6 @@ int stringmatchlen(const char *pattern, int patternLen,
return 0; /* no match */ return 0; /* no match */
break; break;
case '?': case '?':
if (stringLen == 0)
return 0; /* no match */
string++; string++;
stringLen--; stringLen--;
break; break;
......
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