You can check the above prints are consistent (yet undesired) with the code,
   see:
   ##
   pdf_bool_t
   pdf_stm_buffer_full_p (pdf_stm_buffer_t buffer)
   {
     return ((buffer->wp == buffer->size) &&
             (buffer->rp != buffer->wp));
   }
   ###

The second part of the return expression is wrong: it should not be
there.

I just commited a patch in the trunk removing the second part of the
expression and the really_finish_p patch from yesterday.


Reply via email to