Changeset 2971ea in git


Ignore:
Timestamp:
Oct 26, 2005, 12:42:04 PM (18 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
a9681886efc9ad4039f412e23673d166e83cb64f
Parents:
e0749e85fd2f728737794f71fc66b03f432e0a4d
Message:
*hannes: memory leak


git-svn-id: file:///usr/local/Singular/svn/trunk@8749 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/matpol.cc

    re0749e8 r2971ea  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: matpol.cc,v 1.2 2004-08-05 08:57:26 Singular Exp $ */
     4/* $Id: matpol.cc,v 1.3 2005-10-26 10:42:04 Singular Exp $ */
    55
    66/*
     
    893893  while (i>=0)
    894894  {
    895     if (pSub(pCopy(a->m[i]),pCopy(b->m[i]))!=NULL) return FALSE;
     895    poly tt=pSub(pCopy(a->m[i]),pCopy(b->m[i]));
     896    if (tt!=NULL)
     897    {
     898      pDelete(&tt);
     899      return FALSE;
     900    }
    896901    i--;
    897902  }
Note: See TracChangeset for help on using the changeset viewer.