1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0023350: The null pointer is passed into 'strcmp' function.

The method returns if it gets a NULL pointer.
This commit is contained in:
Pawel 2012-07-26 11:18:42 +02:00 committed by Pawel Kowalski
parent aceabd1b53
commit 3b4c36f540

View File

@ -97,7 +97,7 @@ Standard_Boolean VarsTopo::GetClear() const
void VarsTopo::SetOCT(char* noct)
{
if (noct != NULL) return;
if (noct == NULL) return;
else if (!strcmp(noct,"-a")) SetOCT(TopOpeBRepTool_APPROX);
else if (!strcmp(noct,"-p")) SetOCT(TopOpeBRepTool_BSPLINE1);
else if (!strcmp(noct,"-i")) SetOCT(TopOpeBRepTool_INTERPOL);