<br><br><div class="gmail_quote">On Mon, Nov 19, 2012 at 8:14 PM, Neil Roberts <span dir="ltr"><<a href="mailto:neil@linux.intel.com" target="_blank">neil@linux.intel.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
The cogl_error_propagate function takes ownership of the incoming<br>
error pointer so there's no need to allocate a new error when passing<br>
it on. The errors can potentially be passed up from a number of layers<br>
so it seems worthwhile to avoid the allocation.<br>
---<br>
 cogl/cogl-error.c | 8 ++++++--<br>
 1 file changed, 6 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/cogl/cogl-error.c b/cogl/cogl-error.c<br>
index 4ef3681..50829aa 100644<br>
--- a/cogl/cogl-error.c<br>
+++ b/cogl/cogl-error.c<br>
@@ -104,8 +104,12 @@ _cogl_propagate_error (CoglError **dest,<br>
 {<br>
   _COGL_RETURN_IF_FAIL (src != NULL);<br>
<br>
-  _cogl_set_error_literal (dest, src->domain, src->code, src->message);<br>
-  cogl_error_free (src);<br>
+  if (dest == NULL)<br>
+    cogl_error_free (src);<br>
+  else if (*dest)<br>
+    g_warning (ERROR_OVERWRITTEN_WARNING, src->message);<br>
+  else<br>
+    *dest = src;<br>
 }<br></blockquote><div><br></div><div>I think the reason I originally did it the other way was because this api used to be called _cogl_propogate_gerror() and was intended to propogate an error e.g. from gdk-pixbuf. Although it's unlikely someone would build cogl with --without-glib and still use gdk-pixbuf but in that case we shouldn't just be stealing the message and GError pointers.</div>
<div><br></div><div>I suppose we should either have a clear comment about that for the current implementation or make _cogl_propogate_gerror() a separate function that works like the old api and add _cogl_propogate_error() that works as you suggest.</div>
<div><br></div><div>kind regards,</div><div>- Robert</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
 void<br>
<span class="HOEnZb"><font color="#888888">--<br>
1.7.11.3.g3c3efa5<br>
<br>
_______________________________________________<br>
Cogl mailing list<br>
<a href="mailto:Cogl@lists.freedesktop.org">Cogl@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/cogl" target="_blank">http://lists.freedesktop.org/mailman/listinfo/cogl</a><br>
</font></span></blockquote></div><br>