зеркало из https://github.com/mozilla/pjs.git
Bug 575633 streamParse leaks ToNewCString(globalStream)
r=biesi --HG-- extra : rebase_source : 60422d4d1120d16044a8d292f7fafc7cb8cdcbfb
This commit is contained in:
Родитель
f3097012f8
Коммит
79c75ee9d4
|
@ -89,14 +89,14 @@ static NS_METHOD streamParse (nsIInputStream* in,
|
|||
char parseBuf[2048], loc[2048], lineBuf[2048];
|
||||
char *loc_t, *loc_t2;
|
||||
int i = 0;
|
||||
char *tmp;
|
||||
const char *tmp;
|
||||
|
||||
if(!globalStream.IsEmpty()) {
|
||||
globalStream.Append(fromRawSegment);
|
||||
tmp = ToNewCString(globalStream);
|
||||
tmp = globalStream.get();
|
||||
//printf("\n>>NOW:\n^^^^^\n%s\n^^^^^^^^^^^^^^", tmp);
|
||||
} else {
|
||||
tmp = (char *)fromRawSegment;
|
||||
tmp = fromRawSegment;
|
||||
}
|
||||
|
||||
while(i < (int)count) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче