aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--e-util/e-xml-utils.c6
-rw-r--r--e-util/e-xml-utils.c-568266
3 files changed, 10 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 275e1e38df..bf77451907 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-03-05 Christopher James Lahey <clahey@helixcode.com>
+
+ * e-util/e-xml-utils.c: Fixed e_xml_set_integer_prop_by_name.
+
2000-03-05 Matt Loper <matt.loper@splashtech.com>
* tests/ui-tests/message-browser.c: Commenting added.
diff --git a/e-util/e-xml-utils.c b/e-util/e-xml-utils.c
index 7eb54105d1..db9cfafb92 100644
--- a/e-util/e-xml-utils.c
+++ b/e-util/e-xml-utils.c
@@ -48,7 +48,7 @@ e_xml_get_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name)
void
e_xml_set_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name, int value)
{
- xmlChar *value = g_strdup_printf("%d", value);
- xmlSetProp(parent, prop_name, value);
- g_free (value);
+ xmlChar *valuestr = g_strdup_printf("%d", value);
+ xmlSetProp(parent, prop_name, valuestr);
+ g_free (valuestr);
}
diff --git a/e-util/e-xml-utils.c-56826 b/e-util/e-xml-utils.c-56826
index 7eb54105d1..db9cfafb92 100644
--- a/e-util/e-xml-utils.c-56826
+++ b/e-util/e-xml-utils.c-56826
@@ -48,7 +48,7 @@ e_xml_get_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name)
void
e_xml_set_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name, int value)
{
- xmlChar *value = g_strdup_printf("%d", value);
- xmlSetProp(parent, prop_name, value);
- g_free (value);
+ xmlChar *valuestr = g_strdup_printf("%d", value);
+ xmlSetProp(parent, prop_name, valuestr);
+ g_free (valuestr);
}