gegl r2801 - in trunk: . gegl/operation



Author: ok
Date: Mon Nov 24 01:19:13 2008
New Revision: 2801
URL: http://svn.gnome.org/viewvc/gegl?rev=2801&view=rev

Log:
* gegl/operation/gegl-operation-filter.c:
(gegl_operation_filter_process): allow NULL inputs.


Modified:
   trunk/ChangeLog
   trunk/gegl/operation/gegl-operation-filter.c

Modified: trunk/gegl/operation/gegl-operation-filter.c
==============================================================================
--- trunk/gegl/operation/gegl-operation-filter.c	(original)
+++ trunk/gegl/operation/gegl-operation-filter.c	Mon Nov 24 01:19:13 2008
@@ -204,7 +204,7 @@
 
   input  = gegl_operation_context_get_source (context, "input");
   output = gegl_operation_context_get_target (context, "output");
-  if (input != NULL)
+  if (input != NULL || 1)
     {
       success = klass->process (operation, input, output, result);
       g_object_unref (input);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]