Changeset 0348cc3 in git


Ignore:
Timestamp:
Feb 2, 2015, 4:48:42 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
022882ca2128eafdd86cb79ec130ec6593193f07
Parents:
9c933c81aa5988748b79ffa6ef5027c2e6b4fbea
Message:
fix: tr. #690 (memory leak)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/kutil.cc

    r9c933c8 r0348cc3  
    14731473  h.sev = pGetShortExpVector(h.p);
    14741474  if (currRing!=strat->tailRing)
    1475     h.t_p = k_LmInit_currRing_2_tailRing(h.p, strat->tailRing);
     1475  {
     1476    if (h.t_p==NULL) /* may already been set by pLdeg() in initEcart */
     1477      h.t_p = k_LmInit_currRing_2_tailRing(h.p, strat->tailRing);
     1478  }
    14761479  enterL(&strat->L,&strat->Ll,&strat->Lmax,h,posx);
    14771480  return TRUE;
Note: See TracChangeset for help on using the changeset viewer.