Dr. Werner Fink wrote:
On Mon, Feb 07, 2005 at 11:01:29AM -0800, C.Y.M wrote:After running vdr-1.3.20, valgrind was complaining about the following line. Attached is a patch.
Best Regards,
C.Y.M.
--- vdr-1.3.20/interface.c.orig 2004-11-01 06:23:28.000000000 -0800
+++ vdr-1.3.20/interface.c 2005-02-05 14:33:05.000000000 -0800
@@ -26,6 +26,7 @@
cInterface::~cInterface()
{
+ if (SVDRP)
delete SVDRP;
+ SVDRP = NULL; I guess ;^)}Werner
This pointer is 'private' in cInterface, so there is nothing that would access it after ~cInterface has run. Klaus