diff options
author | jstebbins <[email protected]> | 2008-09-08 02:13:48 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-09-08 02:13:48 +0000 |
commit | 4d231bd034d3f73efae01eee686896234c202a85 (patch) | |
tree | 97641b0afecfd6d8e167e276198f75b8de7b3e63 /gtk/src/plist.c | |
parent | ee19debd964cbd40df6097f34be0076162700550 (diff) |
LinGui: yikes, this thing leaks worse than my roof, fixed
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1677 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/plist.c')
-rw-r--r-- | gtk/src/plist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/src/plist.c b/gtk/src/plist.c index b0a39c31b..d3dcf2af0 100644 --- a/gtk/src/plist.c +++ b/gtk/src/plist.c @@ -250,7 +250,7 @@ end_element( } break; case P_STRING: { - gval = ghb_string_value_new(g_strdup(pd->value)); + gval = ghb_string_value_new(pd->value); } break; case P_DATE: { |