diff options
author | Denis Loh <denis.loh@gmail.com> | 2009-10-30 11:12:05 +0100 |
---|---|---|
committer | Denis Loh <denis.loh@gmail.com> | 2009-10-30 11:12:05 +0100 |
commit | 7d596d673c1918eb962acf296a518ac5e50815fc (patch) | |
tree | 739b796f8b766e9321dd13686133386f2708c076 /database/database.cpp | |
parent | 6b3a6ab4182e9468dfcf5ff8aae85f9b2b4bbb6a (diff) | |
download | vdr-plugin-upnp-7d596d673c1918eb962acf296a518ac5e50815fc.tar.gz vdr-plugin-upnp-7d596d673c1918eb962acf296a518ac5e50815fc.tar.bz2 |
Fixed issue due changing statement parsing
Diffstat (limited to 'database/database.cpp')
-rw-r--r-- | database/database.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/database/database.cpp b/database/database.cpp index 4355cbd..b3d11b2 100644 --- a/database/database.cpp +++ b/database/database.cpp @@ -127,10 +127,8 @@ cRow::cRow(){ } cRow::~cRow(){ - for(int i=0;i<this->ColCount;i++){ - delete Columns[i]; - delete Values[i]; - } + delete [] this->Columns; + delete [] this->Values; this->Columns = NULL; this->Values = NULL; } |