Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2015-02-22 15:18:06 +0000
committerStijn Buys <ingar@osirion.org>2015-02-22 15:18:06 +0000
commiteefd79572cc521e5f6a0e2ddb3135ed8de925e70 (patch)
tree4296e968969021258a79b127fee746d7a05319b6 /src/model/mapfile.cc
parent20573c3db1c9ac63500c275b586c32871203ccce (diff)
Fixed valgrind warnings.
Diffstat (limited to 'src/model/mapfile.cc')
-rw-r--r--src/model/mapfile.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/mapfile.cc b/src/model/mapfile.cc
index 05cea2a..3adcbb0 100644
--- a/src/model/mapfile.cc
+++ b/src/model/mapfile.cc
@@ -46,7 +46,7 @@ public:
delete[] matrix_values[i];
}
- delete matrix_values;
+ delete[] matrix_values;
}
T * operator[](size_t row)