We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02c06d6 commit 3a21cdaCopy full SHA for 3a21cda
1 file changed
src/msolve/lifting-gb.c
@@ -1669,7 +1669,7 @@ uint64_t export_results_from_groebner_qq(
1669
ht_t *ht = gb->bht;
1670
const len_t ebl = ht->ebl;
1671
const len_t evl = ht->evl;
1672
- int *evi = (int *)(*mallocp)((unsigned long)(ht->nv + 1) * sizeof(int));
+ int *evi = (int *)malloc((unsigned long)(ht->nv + 1) * sizeof(int));
1673
if (ebl == 0) {
1674
for (len_t i = 1; i <= evl; ++i) {
1675
evi[i-1] = i;
0 commit comments