Skip to content

Commit

Permalink
Fix bug in fmpz_poly_q/clear.
Browse files Browse the repository at this point in the history
  • Loading branch information
wbhart committed Aug 2, 2017
1 parent 049fb2b commit 8385a55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fmpz_poly_q/clear.c
Expand Up @@ -19,7 +19,7 @@ void fmpz_poly_q_clear(fmpz_poly_q_t rop)
flint_free(rop->num);
rop->num = NULL;
}
if (rop->den != NULL);
if (rop->den != NULL)
{
fmpz_poly_clear(rop->den);
flint_free(rop->den);
Expand Down

0 comments on commit 8385a55

Please sign in to comment.