aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorJacek Antonelli2008-12-06 11:50:22 -0600
committerJacek Antonelli2008-12-06 11:50:22 -0600
commit16ec76454eba3143e98434adab731cc71ad5ee0b (patch)
tree688408e3abe7487345023cabb419ebf4b6030f66 /linden
parentVWR-10759 (use delete [] in LLMediaImplGStreamer) (diff)
downloadmeta-impy-16ec76454eba3143e98434adab731cc71ad5ee0b.zip
meta-impy-16ec76454eba3143e98434adab731cc71ad5ee0b.tar.gz
meta-impy-16ec76454eba3143e98434adab731cc71ad5ee0b.tar.bz2
meta-impy-16ec76454eba3143e98434adab731cc71ad5ee0b.tar.xz
VWR-10837 (use delete [] in LLImageTGA)
Patch by Aleric Inglewood.
Diffstat (limited to 'linden')
-rw-r--r--linden/indra/llimage/llimagetga.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/llimage/llimagetga.cpp b/linden/indra/llimage/llimagetga.cpp
index 32c2111..21d0fd1 100644
--- a/linden/indra/llimage/llimagetga.cpp
+++ b/linden/indra/llimage/llimagetga.cpp
@@ -104,7 +104,7 @@ LLImageTGA::LLImageTGA(const std::string& file_name)
104 104
105LLImageTGA::~LLImageTGA() 105LLImageTGA::~LLImageTGA()
106{ 106{
107 delete mColorMap; 107 delete [] mColorMap;
108} 108}
109 109
110BOOL LLImageTGA::updateData() 110BOOL LLImageTGA::updateData()