|
From: Michael F. <fo...@ya...> - 2009-01-08 13:37:44
|
strk wrote: > Which file of the gnash test suite please ? The test is "testsuite/misc-ming.all/NetStream-SquareTest". (The segfault doesn't occur every time. After all, it's a buffer overflow, so the behavior is somewhat unpredictable.) > Does this truncate the line ? Yes, the line is truncated in the error message. The buffer that msgline points to is only 1024 bytes long. The "if(column < 1023)" already stores only 1023 characters in the message. The NULL should appear right after that. Kind Regards, M.F. |