aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.txt5
-rw-r--r--linden/indra/llimage/llimagetga.cpp2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index 7ca5d3b..533bddd 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -1,5 +1,10 @@
12008-12-06 Jacek Antonelli <jacek.antonelli@gmail.com> 12008-12-06 Jacek Antonelli <jacek.antonelli@gmail.com>
2 2
3 * linden/indra/llimage/llimagetga.cpp:
4 VWR-10837 (use delete [] in LLImageTGA)
5 Patch by Aleric Inglewood.
6
7
3 * linden/indra/llmedia/llmediaimplgstreamer.cpp: 8 * linden/indra/llmedia/llmediaimplgstreamer.cpp:
4 VWR-10759 (use delete [] in LLMediaImplGStreamer) 9 VWR-10759 (use delete [] in LLMediaImplGStreamer)
5 Patch by Aleric Inglewood. 10 Patch by Aleric Inglewood.
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()