mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 10:33:33 +00:00
Use nsCRT::free() instead of delete[] for char* data.
This commit is contained in:
parent
c48109f575
commit
64a22d4ee2
@ -22,6 +22,7 @@
|
||||
#include "nsIPref.h"
|
||||
#include "nsIServiceManager.h"
|
||||
#include "il_util.h"
|
||||
#include "nsCRT.h"
|
||||
|
||||
#include "nsDeviceContextGTK.h"
|
||||
#include "nsGfxCIID.h"
|
||||
@ -361,7 +362,7 @@ NS_IMETHODIMP nsDeviceContextGTK::CheckFontExistence(const nsString& aFontName)
|
||||
PR_snprintf(wildstring, namelen + 200,
|
||||
"-*-%s-*-*-normal-*-*-*-%d-%d-*-*-*-*",
|
||||
fontName, dpi, dpi);
|
||||
delete [] fontName;
|
||||
nsCRT::free(fontName);
|
||||
|
||||
fnames = ::XListFontsWithInfo(GDK_DISPLAY(), wildstring, 1, &numnames, &fonts);
|
||||
|
||||
|
@ -240,7 +240,7 @@ nsXIFFormatConverter::Convert(const char *aFromDataFlavor, nsISupports *aFromDat
|
||||
*aToData = genericDataWrapper;
|
||||
NS_ADDREF(*aToData);
|
||||
*aDataToLen = outStr.Length();
|
||||
delete [] holderBecauseNSStringIsLame;
|
||||
nsCRT::free(holderBecauseNSStringIsLame);
|
||||
}
|
||||
}
|
||||
} // if plain text
|
||||
|
Loading…
Reference in New Issue
Block a user