In clear_free, clear the complete structure just in case
the method misses something.
This commit is contained in:
parent
5277d7cb7c
commit
f418f8c17c
@ -120,6 +120,7 @@ void EC_GROUP_clear_free(EC_GROUP *group)
|
|||||||
group->meth->group_clear_finish(group);
|
group->meth->group_clear_finish(group);
|
||||||
else if (group->meth != NULL && group->meth->group_finish != 0)
|
else if (group->meth != NULL && group->meth->group_finish != 0)
|
||||||
group->meth->group_finish(group);
|
group->meth->group_finish(group);
|
||||||
|
memset(point, 0, sizeof *group);
|
||||||
OPENSSL_free(group);
|
OPENSSL_free(group);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -206,6 +207,7 @@ void EC_POINT_clear_free(EC_POINT *point)
|
|||||||
point->meth->point_clear_finish(point);
|
point->meth->point_clear_finish(point);
|
||||||
else if (point->meth != NULL && point->meth->point_finish != 0)
|
else if (point->meth != NULL && point->meth->point_finish != 0)
|
||||||
point->meth->point_finish(point);
|
point->meth->point_finish(point);
|
||||||
|
memset(point, 0, sizeof *point);
|
||||||
OPENSSL_free(point);
|
OPENSSL_free(point);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user