increment pointer to  mime description string before calling strchr


git-svn-id: svn://10.0.0.236/trunk@50417 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
idk%eng.sun.com
1999-10-12 03:29:27 +00:00
parent 30e53d03e9
commit 651e1ddd8a

View File

@@ -163,7 +163,7 @@ int Pluglet::Compare(const char *mimeType) {
}
p1 = p2 ;
if (p2 != NULL) {
p2 = strchr(p2,';');
p2 = strchr(++p2,';');
p1++;
}
}