On Fri, Sep 20, 2002 at 09:27:41AM +0200, [EMAIL PROTECTED] wrote: > I traced down the probmlem and it seems the 00 byte after the 05 makes the > StringSource stop pumping. I'm not sure I understand the 'messages' paradigm > built into StringSource (and all other filter classes). Any enlightements ?
There are two constructors for StringSource. One of them takes a zero-terminated c string, the other takes a binary array. By casting your pointer to (char *) you were using the first constructor, that's why it stopped after seeing the 00 byte. Maybe someone else can explain "messages"?
