mirror of
https://github.com/opencv/opencv.git
synced 2025-01-19 06:53:50 +08:00
initialize padding of CvString with zeros
This commit is contained in:
parent
a98ee0d3b2
commit
7b1eb3af7b
@ -346,6 +346,7 @@ CV_IMPL CvString
|
||||
cvMemStorageAllocString( CvMemStorage* storage, const char* ptr, int len )
|
||||
{
|
||||
CvString str;
|
||||
memset(&str, 0, sizeof(CvString));
|
||||
|
||||
str.len = len >= 0 ? len : (int)strlen(ptr);
|
||||
str.ptr = (char*)cvMemStorageAlloc( storage, str.len + 1 );
|
||||
|
Loading…
Reference in New Issue
Block a user