- Original Message -
> On Tue, Jun 02, 2015 at 12:32:40PM -0400, Marc-André Lureau wrote:
> > - Original Message -
> > > Hey, thanks for the quick review!
> > >
> > > > > static void
> > > > > +set_all_sources_ready (GList *sources)
> > > > > +{
> > > > > +GList *it;
> > > >
On Tue, Jun 02, 2015 at 12:32:40PM -0400, Marc-André Lureau wrote:
> - Original Message -
> > Hey, thanks for the quick review!
> >
> > > > static void
> > > > +set_all_sources_ready (GList *sources)
> > > > +{
> > > > +GList *it;
> > > > +for (it = sources; it != NULL; it = it->n
- Original Message -
> Hey, thanks for the quick review!
>
> > > static void
> > > +set_all_sources_ready (GList *sources)
> > > +{
> > > +GList *it;
> > > +for (it = sources; it != NULL; it = it->next) {
> > > +GSource *s = it->data;
> > > +if (s != NULL && !g_s
Hey, thanks for the quick review!
> > static void
> > +set_all_sources_ready (GList *sources)
> > +{
> > +GList *it;
> > +for (it = sources; it != NULL; it = it->next) {
> > +GSource *s = it->data;
> > +if (s != NULL && !g_source_is_destroyed(s))
> > +g_source_
On Tue, Jun 2, 2015 at 6:00 PM, Victor Toso wrote:
> PipeInputStream and PipeOutputStream should not fail when creating
> GPollableStream source as this currently does not work with default
> write_all and read_all functions;
>
> This patch removes the g_return_val_if_fail but keeps a g_debug in
PipeInputStream and PipeOutputStream should not fail when creating
GPollableStream source as this currently does not work with default
write_all and read_all functions;
This patch removes the g_return_val_if_fail but keeps a g_debug in order
to track problems;
In order to avoid creating zombie GS