Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix potential null pointer dereference found by coverity (#186)
CID 442459: (#2 of 2): Dereference before null check (REVERSE_INULL) check_after_deref: Null-checking conn->functions suggests that it may be null, but it has already been dereferenced on all paths leading to the check. 3048 if ( conn -> functions ) 3049 { 3050 free( conn -> functions ); 3051 conn -> functions = NULL; 3052 }
- Loading branch information