diff --git a/Source/NSPropertyList.m b/Source/NSPropertyList.m index 6a790d118..55fde04fb 100644 --- a/Source/NSPropertyList.m +++ b/Source/NSPropertyList.m @@ -712,11 +712,11 @@ static id parsePlItem(pldata* pld) len--; // Allow for quoted values. - if (ptr[0] == '\'' && len > 1) + if (ptr[0] == '"' && len > 1) { len--; ptr++; - if (ptr[len - 1] == '\'') + if (ptr[len - 1] == '"') { len--; }