mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 19:20:28 +08:00
Don't blow out the stack. Use a smaller buffer and prevent buffer overruns with snprintf.
This commit is contained in:
parent
636ab095b0
commit
256b6bb3db
@ -859,9 +859,10 @@ void error( const Exception& exc )
|
||||
else
|
||||
{
|
||||
const char* errorStr = cvErrorStr(exc.code);
|
||||
char buf[1 << 16];
|
||||
char buf[1 << 12];
|
||||
|
||||
sprintf( buf, "OpenCV Error: %s (%s) in %s, file %s, line %d",
|
||||
snprintf( buf, sizeof(buf),
|
||||
"OpenCV Error: %s (%s) in %s, file %s, line %d",
|
||||
errorStr, exc.err.c_str(), exc.func.size() > 0 ?
|
||||
exc.func.c_str() : "unknown function", exc.file.c_str(), exc.line );
|
||||
fprintf( stderr, "%s\n", buf );
|
||||
|
Loading…
Reference in New Issue
Block a user