зеркало из https://github.com/mozilla/pjs.git
Bug 391485 - memory leak in nsToolkitProfileService::Flush
p=brian.lu@sun.com (Boying Lu) r=benjamin@smedbergs.us (Benjamin Smedberg) a=bzbarsky@mit.edu (Boris Zbarsky)
This commit is contained in:
Родитель
08c8e76b6d
Коммит
6186722cb1
|
@ -763,8 +763,8 @@ nsToolkitProfileService::Flush()
|
|||
++pCount;
|
||||
|
||||
PRUint32 length;
|
||||
nsAutoArrayPtr<char> buffer (new char[100+MAXPATHLEN*pCount]);
|
||||
|
||||
char* buffer = (char*) malloc(100 + MAXPATHLEN * pCount);
|
||||
NS_ENSURE_TRUE(buffer, NS_ERROR_OUT_OF_MEMORY);
|
||||
|
||||
char *end = buffer;
|
||||
|
|
Загрузка…
Ссылка в новой задаче