mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Fixed a memory leak in cString::operator=()
This commit is contained in:
3
tools.c
3
tools.c
@@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: tools.c 1.101 2005/11/04 14:20:04 kls Exp $
|
||||
* $Id: tools.c 1.102 2005/11/04 14:26:39 kls Exp $
|
||||
*/
|
||||
|
||||
#include "tools.h"
|
||||
@@ -534,6 +534,7 @@ cString::~cString()
|
||||
|
||||
cString &cString::operator=(const cString &String)
|
||||
{
|
||||
free(s);
|
||||
s = String.s ? strdup(String.s) : NULL;
|
||||
return *this;
|
||||
}
|
||||
|
Reference in New Issue
Block a user