Return TRUE if all the data got eaten by header_buf, instead of FALSE.

Return TRUE if all the data got eaten by header_buf, instead of FALSE.
This commit is contained in:
Elliot Lee 1999-11-02 20:20:05 +00:00
parent 9efff07116
commit 966ae7b613
2 changed files with 2 additions and 2 deletions

View File

@ -332,7 +332,7 @@ gdk_pixbuf_loader_write (GdkPixbufLoader *loader, guchar *buf, size_t count)
if (count > 0 && priv->image_module->load_increment)
return (* priv->image_module->load_increment) (priv->context, buf, count);
return (FALSE);
return TRUE;
}
/**

View File

@ -332,7 +332,7 @@ gdk_pixbuf_loader_write (GdkPixbufLoader *loader, guchar *buf, size_t count)
if (count > 0 && priv->image_module->load_increment)
return (* priv->image_module->load_increment) (priv->context, buf, count);
return (FALSE);
return TRUE;
}
/**