just doing the right thing. fixes 41018, obfuscated and redundant code. r=many people.

This commit is contained in:
pinkerton%netscape.com 2000-05-31 02:51:12 +00:00
Родитель 1a1b1182c7
Коммит b63cd624f7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2732,7 +2732,7 @@ cookie_FixQuoted(char* s) {
char *quote = s;
unsigned int i, j;
while ((quote = PL_strchr(quote, '"'))) {
count = count++;
count++;
quote++;
}
result = (char*)PR_Malloc(count + 1);