Changeset 0bd5e6 in git for kernel/GBEngine/kutil.cc


Ignore:
Timestamp:
Nov 17, 2021, 12:54:29 PM (2 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
bbf3076e61f07ac1fc8be5a31d3e056c6bd502c8
Parents:
10ad90e879798ac9b4803eed6eec34d51b5051d2
Message:
fix: avoid NULL coeff in HEdge
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/kutil.cc

    r10ad90 r0bd5e6  
    1073010730  if (pCmp(strat->kNoether,newNoether)!=1)
    1073110731  {
    10732     if (strat->kNoether!=NULL) pLmDelete(&strat->kNoether);
     10732    if (strat->kNoether!=NULL)
     10733    {
     10734      if (pGetCoeff(strat->kNoether)==NULL) pLmFree(strat->kNoether);
     10735      else                                  pLmDelete(strat->kNoether);
     10736    }
    1073310737    strat->kNoether=newNoether;
    1073410738    if (strat->t_kNoether != NULL)
Note: See TracChangeset for help on using the changeset viewer.