Changeset 9e55dd in git


Ignore:
Timestamp:
Feb 18, 2003, 4:35:05 PM (21 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
39f8f722e07c36714b80398da2d48f05e6ead1ed
Parents:
3a6c880fa0f2dac89c26111647faaedcbd6b1bb9
Message:
*hannes: style


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

Legend:

Unmodified
Added
Removed
  • Singular/hutil.cc

    r3a6c88 r9e55dd  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: hutil.cc,v 1.20 2001-08-27 14:47:02 Singular Exp $ */
     4/* $Id: hutil.cc,v 1.21 2003-02-18 15:35:05 Singular Exp $ */
    55/*
    66* ABSTRACT: Utilities for staircase operations
     
    549549    {
    550550      k--;
     551      if (k<=0) return;
    551552    }
    552553  }
     
    10161017  scfmon x = monmem->mo;
    10171018  int  lx = monmem->a;
    1018   if (!x || (lm > lx))
    1019   {
    1020     if (x) omFreeSize((ADDRESS)x, lx * sizeof(scmon));
     1019  if ((x==NULL) || (lm > lx))
     1020  {
     1021    if ((x!=NULL)&&(lx>0)) omFreeSize((ADDRESS)x, lx * sizeof(scmon));
    10211022    monmem->mo = x = (scfmon)omAlloc(lm * sizeof(scmon));
    10221023    monmem->a = lm;
Note: See TracChangeset for help on using the changeset viewer.