r vidur@netscape.com
d Fixes the problem with memory leak in AppendData node when manipulating
  comment nodes.
This commit is contained in:
waqar%netscape.com 1999-11-23 23:13:03 +00:00
Родитель 4f19a178ff
Коммит 91eea99324
2 изменённых файлов: 8 добавлений и 2 удалений

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

@ -317,7 +317,7 @@ nsGenericDOMDataNode::AppendData(const nsString& aData)
PRInt32 dataLength = aData.Length();
PRInt32 textLength = mText.GetLength();
PRInt32 newSize = textLength + dataLength;
PRUnichar* to = new PRUnichar[newSize];
PRUnichar* to = new PRUnichar[newSize + 1];
if (nsnull == to) {
return NS_ERROR_OUT_OF_MEMORY;
}
@ -331,6 +331,9 @@ nsGenericDOMDataNode::AppendData(const nsString& aData)
nsCRT::memcpy(to + textLength, aData.GetUnicode(),
sizeof(PRUnichar) * dataLength);
// Null terminate the new buffer...
to[newSize] = (PRUnichar)0;
nsCOMPtr<nsITextContent> textContent = do_QueryInterface(mContent, &result);
// Switch to new buffer

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

@ -317,7 +317,7 @@ nsGenericDOMDataNode::AppendData(const nsString& aData)
PRInt32 dataLength = aData.Length();
PRInt32 textLength = mText.GetLength();
PRInt32 newSize = textLength + dataLength;
PRUnichar* to = new PRUnichar[newSize];
PRUnichar* to = new PRUnichar[newSize + 1];
if (nsnull == to) {
return NS_ERROR_OUT_OF_MEMORY;
}
@ -331,6 +331,9 @@ nsGenericDOMDataNode::AppendData(const nsString& aData)
nsCRT::memcpy(to + textLength, aData.GetUnicode(),
sizeof(PRUnichar) * dataLength);
// Null terminate the new buffer...
to[newSize] = (PRUnichar)0;
nsCOMPtr<nsITextContent> textContent = do_QueryInterface(mContent, &result);
// Switch to new buffer