grim/gplate

Functions can NOT return NULL
render_rewrite
2008-02-17, grim
f7533f4ebefb
Parents ab20699388a3
Children 0136c5009dc3
Functions can NOT return NULL
--- a/gplate/gplate-print-function.c Sun Feb 17 06:57:13 2008 -0600
+++ b/gplate/gplate-print-function.c Sun Feb 17 06:58:44 2008 -0600
@@ -30,7 +30,7 @@
GPlateTemplate *tplate,
const gchar *contents)
{
- return (contents) ? g_strdup(contents) : NULL;
+ return (contents) ? g_strdup(contents) : g_strdup("");
}
/******************************************************************************