| 3072 | |
| 3073 | |
| 3074 | CV_IMPL void |
| 3075 | cvReleaseGraphScanner( CvGraphScanner** scanner ) |
| 3076 | { |
| 3077 | if( !scanner ) |
| 3078 | CV_Error( CV_StsNullPtr, "Null double pointer to graph scanner" ); |
| 3079 | |
| 3080 | if( *scanner ) |
| 3081 | { |
| 3082 | if( (*scanner)->stack ) |
| 3083 | cvReleaseMemStorage( &((*scanner)->stack->storage)); |
| 3084 | cvFree( scanner ); |
| 3085 | } |
| 3086 | } |
| 3087 | |
| 3088 | |
| 3089 | CV_IMPL int |
no test coverage detected