diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-06-17 21:17:32 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-06-17 21:17:32 +0000 |
commit | 2a9c8bdb6976fa2b348def85de5f767c9c73a675 (patch) | |
tree | 1b2ec6f27f09622d3f8a1390bd7b77b9be5918dd /src/input/input_vcd.c | |
parent | ae3ab4e40eedc8097a8de0cfe397b5d6c62c2320 (diff) | |
download | xine-lib-2a9c8bdb6976fa2b348def85de5f767c9c73a675.tar.gz xine-lib-2a9c8bdb6976fa2b348def85de5f767c9c73a675.tar.bz2 |
Few memory leaks.
CVS patchset: 2090
CVS date: 2002/06/17 21:17:32
Diffstat (limited to 'src/input/input_vcd.c')
-rw-r--r-- | src/input/input_vcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c index 5f336e6a1..f0947e802 100644 --- a/src/input/input_vcd.c +++ b/src/input/input_vcd.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_vcd.c,v 1.43 2002/06/12 12:22:34 f1rmb Exp $ + * $Id: input_vcd.c,v 1.44 2002/06/17 21:17:32 f1rmb Exp $ * */ @@ -145,7 +145,7 @@ typedef struct { static void device_change_cb(void *data, cfg_entry_t *cfg) { vcd_input_plugin_t *this = (vcd_input_plugin_t *) data; - this->device = strdup(cfg->str_value); + this->device = cfg->str_value; } #if defined (__linux__) || defined(__sun) |