Skip to content

Commit

Permalink
remove unnecessary check
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils Larsch committed Feb 8, 2006
1 parent 82e8372 commit bbab9b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/ec/ec_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void EC_GROUP_clear_free(EC_GROUP *group)

if (group->meth->group_clear_finish != 0)
group->meth->group_clear_finish(group);
else if (group->meth != NULL && group->meth->group_finish != 0)
else if (group->meth->group_finish != 0)
group->meth->group_finish(group);

EC_EX_DATA_clear_free_all_data(&group->extra_data);
Expand Down

0 comments on commit bbab9b6

Please sign in to comment.