updated the imagemap plug-in
--Sven
This commit is contained in:
@ -26,7 +26,10 @@
|
||||
gchar*
|
||||
g_strreplace(gchar **old_str, const gchar *new_str)
|
||||
{
|
||||
g_free(*old_str);
|
||||
return *old_str = g_strdup(new_str);
|
||||
if (*old_str != new_str) {
|
||||
g_free(*old_str);
|
||||
*old_str = g_strdup(new_str);
|
||||
}
|
||||
return *old_str;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user