clear the freed mempointer

This commit is contained in:
denis 2007-02-01 22:23:56 +00:00
parent 4569b9ffdf
commit 484565b6b7

View File

@ -103,6 +103,7 @@ static int vector_remove_peer( ot_vector *vector, ot_peer *peer ) {
/* for peer pools its safe to let them go,
in 999 of 1000 this happens in older pools, that won't ever grow again */
free( vector->data );
vector->data = NULL;
vector->space = 0;
}
return exactmatch;