Call delete [] when new [] was used for allocation.

This commit is contained in:
mcmullen%netscape.com 1999-02-27 20:39:07 +00:00
Родитель d5d9540067
Коммит d13c4f0d46
4 изменённых файлов: 4 добавлений и 8 удалений

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

@ -2151,7 +2151,6 @@ ostream& operator<<(ostream& os,nsAutoString& aString){
}
/**
*
* @update gess 7/27/98
@ -2171,7 +2170,7 @@ NS_BASE int fputs(const nsString& aString, FILE* out)
if(len>0)
::fwrite(cp, 1, len, out);
if (cp != buf) {
delete cp;
delete [] cp;
}
return (int) len;
}

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

@ -2151,7 +2151,6 @@ ostream& operator<<(ostream& os,nsAutoString& aString){
}
/**
*
* @update gess 7/27/98
@ -2171,7 +2170,7 @@ NS_BASE int fputs(const nsString& aString, FILE* out)
if(len>0)
::fwrite(cp, 1, len, out);
if (cp != buf) {
delete cp;
delete [] cp;
}
return (int) len;
}

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

@ -2151,7 +2151,6 @@ ostream& operator<<(ostream& os,nsAutoString& aString){
}
/**
*
* @update gess 7/27/98
@ -2171,7 +2170,7 @@ NS_BASE int fputs(const nsString& aString, FILE* out)
if(len>0)
::fwrite(cp, 1, len, out);
if (cp != buf) {
delete cp;
delete [] cp;
}
return (int) len;
}

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

@ -2151,7 +2151,6 @@ ostream& operator<<(ostream& os,nsAutoString& aString){
}
/**
*
* @update gess 7/27/98
@ -2171,7 +2170,7 @@ NS_BASE int fputs(const nsString& aString, FILE* out)
if(len>0)
::fwrite(cp, 1, len, out);
if (cp != buf) {
delete cp;
delete [] cp;
}
return (int) len;
}