diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-01-01 15:10:07 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-01-01 15:10:07 +0100 |
commit | 49f7a7f57470e5b941073a0cccf50425279600d1 (patch) | |
tree | 697f24d4c0c23107e72bc95a8106e57fd81c6c76 /tools.c | |
parent | 6f76e100383189eb9fd2b861fe2cdba2d94b7c59 (diff) | |
download | vdr-49f7a7f57470e5b941073a0cccf50425279600d1.tar.gz vdr-49f7a7f57470e5b941073a0cccf50425279600d1.tar.bz2 |
Fixed cVector::Clear() and cStringList::Clear()
Diffstat (limited to 'tools.c')
-rw-r--r-- | tools.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: tools.c 1.138 2007/12/27 15:57:49 kls Exp $ + * $Id: tools.c 1.139 2008/01/01 15:10:07 kls Exp $ */ #include "tools.h" @@ -1209,6 +1209,7 @@ void cStringList::Clear(void) { for (int i = 0; i < Size(); i++) free(At(i)); + cVector<char *>::Clear(); } // --- cFileNameList --------------------------------------------------------- |