diff options
Diffstat (limited to 'src/spray-context.cpp')
| -rw-r--r-- | src/spray-context.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/spray-context.cpp b/src/spray-context.cpp index fd9aff196..6b97dcc17 100644 --- a/src/spray-context.cpp +++ b/src/spray-context.cpp @@ -499,7 +499,9 @@ static bool sp_spray_recursive(SPDesktop *desktop, // Ad the clone to the list of the father's sons parent->appendChild(clone); // Generates the link between father and son attributes - clone->setAttribute("xlink:href", g_strdup_printf("#%s", old_repr->attribute("id")), false); + gchar *href_str = g_strdup_printf("#%s", old_repr->attribute("id")); + clone->setAttribute("xlink:href", href_str, false); + g_free(href_str); SPObject *clone_object = doc->getObjectByRepr(clone); // conversion object->item |
