Re: AW: [vdr] *** glibc detected *** double free or corruption 1.4.2-1 Patch

2006-09-04 Thread Udo Richter
Klaus Schmidinger wrote: That'll teach me not to write code when I'm on my way out to the "Biergarten"... ;-) Next time, do it afterwards. Afterwards, code is much more 'fluently'. ;) Cheers, Udo ___ vdr mailing list vdr@linuxtv.org http://www.linu

AW: AW: [vdr] *** glibc detected *** double free or corruption 1.4.2-1 Patch

2006-09-04 Thread martin
inger Gesendet: Montag, 4. September 2006 22:25 An: vdr@linuxtv.org Betreff: Re: AW: [vdr] *** glibc detected *** double free or corruption 1.4.2-1 Patch Udo Richter wrote: > martin wrote: >> just to let you know: the patch you attached here, did not solve the >> problem! My VDR crashe

Re: AW: [vdr] *** glibc detected *** double free or corruption 1.4.2-1 Patch

2006-09-04 Thread Klaus Schmidinger
Udo Richter wrote: martin wrote: just to let you know: the patch you attached here, did not solve the problem! My VDR crashed again. Just a few minutes too late... The patch had another bug that re-introduced the original problem once again. The new copy constructor did not initialize the au

Re: AW: [vdr] *** glibc detected *** double free or corruption 1.4.2-1 Patch

2006-09-04 Thread Udo Richter
martin wrote: just to let you know: the patch you attached here, did not solve the problem! My VDR crashed again. Just a few minutes too late... The patch had another bug that re-introduced the original problem once again. The new copy constructor did not initialize the aux pointer, and the

AW: [vdr] *** glibc detected *** double free or corruption 1.4.2-1 Patch

2006-09-04 Thread martin
Hi Klaus, just to let you know: the patch you attached here, did not solve the problem! My VDR crashed again. Regards, Martin -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Klaus Schmidinger Gesendet: Montag, 4. September 2006 19:14 An: vdr@linu

AW: [vdr] *** glibc detected *** double free or corruption 1.4.2-1 Patch

2006-09-04 Thread martin
SUCCESS! This was the problem -> @Klaus: can you please incorporate the changes in the next patch? Thanks, Martin -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Udo Richter Gesendet: Montag, 4. September 2006 18:47 An: VDR Mailing List Betreff:

Re: AW: [vdr] *** glibc detected *** double free or corruption 1.4.2-1 Patch

2006-09-04 Thread Klaus Schmidinger
martin wrote: Hi, implemented the following, but it did not solve the issue :-( timers.c cTimer::~cTimer() { if(aux) free(aux); } .. lifetime = Timer.lifetime; strncpy(file, Timer.file, sizeof(file)); if (aux) free(aux); aux = Timer.aux ? strdup(Timer.aux) : NULL; Klaus's

AW: [vdr] *** glibc detected *** double free or corruption 1.4.2-1 Patch

2006-09-04 Thread martin
Hi, implemented the following, but it did not solve the issue :-( timers.c cTimer::~cTimer() { if(aux) free(aux); } .. lifetime = Timer.lifetime; strncpy(file, Timer.file, sizeof(file)); if (aux) free(aux); aux = Timer.aux ? strdup(Timer.aux) : NULL; Klaus's debugging stateme

AW: [vdr] *** glibc detected *** double free or corruption 1.4.2-1 Patch

2006-09-04 Thread martin
Hi, implemented the following, but it did not solve the issue :-( timers.c cTimer::~cTimer() { if(aux) free(aux); } .. lifetime = Timer.lifetime; strncpy(file, Timer.file, sizeof(file)); if (aux) free(aux); aux = Timer.aux ? strdup(Timer.aux) : NULL; Klaus's debugging stateme