[reportlab-users] pyRXP - strange non-deterministic errors on python 2.7 and 64-bit Linux

Tim Roberts timr at probo.com
Thu May 19 13:26:02 EDT 2011


Tim Roberts wrote:

>

> Let me provide an example of how this kind of thing can happen.

> Consider the following C code:

>

> char buffer[20] = "abcdefgh";

> strcpy( buffer[1], buffer[0] );


Shame on me. Make that
strcpy( &buffer[1], &buffer[0] );

--
Tim Roberts, timr at probo.com
Providenza & Boekelheide, Inc.



More information about the reportlab-users mailing list