summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2014-04-10 18:01:03 +0200
committerEdward Hervey <bilboed@bilboed.com>2014-04-10 18:01:03 +0200
commit73713c157d71d46401326d557fbe06995f5d16f7 (patch)
tree8287b58704812fbf3d852e7e72fd2c593cd5ec2f
parente58a0a0fd8d79281c62c03ba0c11ee194cdd632b (diff)
xml-formatter: Use proper value for string extraction
The pass would be filled with some bogus (pointer) numerical value CID #1139652
-rw-r--r--ges/ges-xml-formatter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ges/ges-xml-formatter.c b/ges/ges-xml-formatter.c
index 04288783..979f01da 100644
--- a/ges/ges-xml-formatter.c
+++ b/ges/ges-xml-formatter.c
@@ -181,7 +181,7 @@ _parse_stream_profile (GMarkupParseContext * context,
COLLECT_STR_OPT, "preset", &preset,
COLLECT_STR_OPT, "preset-name", &preset_name,
COLLECT_STR_OPT, "restriction", &restriction,
- COLLECT_STR_OPT, "pass", &pass,
+ COLLECT_STR_OPT, "pass", &strpass,
COLLECT_STR_OPT, "variableframerate", &strvariableframerate,
G_MARKUP_COLLECT_STRING, "parent", &parent, G_MARKUP_COLLECT_INVALID))
return;