return ret;
}
-static gpointer
-copy_ar_func (gconstpointer src, gpointer data)
+static GPtrArray
+*copy_ar_func (GPtrArray *src)
{
GPtrArray *ret;
GPtrArray *ar_src;
guint i;
+ if (src == NULL)
+ {
+ return NULL;
+ }
+
ar_src = (GPtrArray *)src;
ret = g_ptr_array_new ();
for (i = 0; i < ar_src->len; i++)
{
- g_ptr_array_add (ret, g_strdup ((gchar *)g_ptr_array_index (ar_src, i)));
+ g_ptr_array_add (ret, (gpointer)g_strdup ((gchar *)g_ptr_array_index (ar_src, i)));
}
return ret;
{
ZakFormElementPrivate *priv = zak_form_element_get_instance_private (element);
- return g_ptr_array_copy (priv->pa_messages, copy_ar_func, NULL);
+ if (priv->pa_messages == NULL)
+ {
+ return NULL;
+ }
+ else
+ {
+ return copy_ar_func (priv->pa_messages);
+ }
}
/**
if (priv->pa_messages != NULL)
{
g_ptr_array_free (priv->pa_messages, TRUE);
- priv->pa_messages = g_ptr_array_copy (messages, copy_ar_func, NULL);
+ priv->pa_messages = copy_ar_func (messages);
}
}