Teodor Sigaev <[EMAIL PROTECTED]> writes:
> !                     pbuf = buf;
> !                     while( !isspace( *pbuf ) )
> !                             pbuf++;
> !                     *pbuf = '\0';

Surely the loop needs to look like

        while (*pbuf && !isspace(*pbuf))
                pbuf++;

                        regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

               http://www.postgresql.org/docs/faq

Reply via email to