Changeset f3946f in git


Ignore:
Timestamp:
Feb 9, 2001, 6:26:00 PM (23 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
830676e3b0092125ddb881bf336d0990d68e6e82
Parents:
6ca6690825cdff21f0a6073cea36f43b1a760975
Message:
* memory leak fixed


git-svn-id: file:///usr/local/Singular/svn/trunk@5220 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/kInline.cc

    r6ca669 rf3946f  
    77 *  Author:  obachman (Olaf Bachmann)
    88 *  Created: 8/00
    9  *  Version: $Id: kInline.cc,v 1.23 2000-12-31 15:14:32 obachman Exp $
     9 *  Version: $Id: kInline.cc,v 1.24 2001-02-09 17:26:00 obachman Exp $
    1010 *******************************************************************/
    1111#ifndef KINLINE_CC
     
    420420  sTObject::Clear();
    421421  sev = 0;
     422}
     423// Initialization
     424KINLINE void sLObject::Delete()
     425{
     426  sTObject::Delete();
     427  if (bucket != NULL)
     428    kBucketDeleteAndDestroy(&bucket);
    422429}
    423430
  • Singular/kutil.h

    r6ca669 rf3946f  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: kutil.h,v 1.55 2001-01-18 16:21:16 Singular Exp $ */
     6/* $Id: kutil.h,v 1.56 2001-02-09 17:26:00 obachman Exp $ */
    77/*
    88* ABSTRACT: kernel: utils for kStd
     
    145145  KINLINE sLObject(poly p, ring c_r, ring tailRing);
    146146
     147  // Frees the polys of L
     148  KINLINE void Delete();
    147149  KINLINE void Clear();
    148150
Note: See TracChangeset for help on using the changeset viewer.