R
rohityogi
This statement gives core dump
if( pError->pFileName[0] != '\0' )
can someone suggest why ?
This statement was failing in all our unix environments so we changed
it to:
if( !(pError->pFunctionName == NULL))
It worked for some environments then now again it failed in 1
environment.
Any idea ?
All memory allocation have been done.
if( pError->pFileName[0] != '\0' )
can someone suggest why ?
This statement was failing in all our unix environments so we changed
it to:
if( !(pError->pFunctionName == NULL))
It worked for some environments then now again it failed in 1
environment.
Any idea ?
All memory allocation have been done.