fixed warning on windows

This commit is contained in:
ilya-lavrenov
2013-09-04 18:32:05 +04:00
committed by Alexander Alekhin
parent 555c505b70
commit 7a53910495
5 changed files with 23 additions and 10 deletions

View File

@@ -8,11 +8,13 @@
/* Select appropriate case insensitive string comparison function: */
#if defined WIN32 || defined _MSC_VER
#define MY_STRNICMP strnicmp
#define MY_STRICMP stricmp
# define MY_STRNICMP _strnicmp
# define MY_STRICMP _stricmp
# define MY_STRDUP _strdup
#else
#define MY_STRNICMP strncasecmp
#define MY_STRICMP strcasecmp
# define MY_STRNICMP strncasecmp
# define MY_STRICMP strcasecmp
# define MY_STRDUP strdup
#endif
/* List of foreground (FG) DETECTION modules: */
@@ -239,7 +241,7 @@ static int RunBlobTrackingAuto( CvCapture* pCap, CvBlobTrackerAuto* pTracker,cha
if(pS)
{
char* pStr = strdup(pS);
char* pStr = MY_STRDUP(pS);
char* pStrFree = pStr;
while (pStr && strlen(pStr) > 0)