Changeset e080ab in git


Ignore:
Timestamp:
Feb 26, 2009, 7:48:25 PM (14 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
Children:
2809766227df25a7bd9aff4ad7b14d7cde637824
Parents:
3ec38a567b6025adb57223e0a734c42f135941f9
Message:
*hannes: avoid crrash - ticket 89


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

Legend:

Unmodified
Added
Removed
  • kernel/clapsing.cc

    r3ec38a re080ab  
    33*  Computer Algebra System SINGULAR     *
    44****************************************/
    5 // $Id: clapsing.cc,v 1.34 2009-02-13 12:20:50 Singular Exp $
     5// $Id: clapsing.cc,v 1.35 2009-02-26 18:48:25 Singular Exp $
    66/*
    77* ABSTRACT: interface between Singular and factory
     
    10461046          if(!count_Factors(res,w,j,ff,convFactoryPSingTrP( J.getItem().factor() )))
    10471047          {
    1048             (*w)[j]=1;
     1048            if (w!=NULL)
     1049              (*w)[j]=1;
    10491050            res->m[j]=pOne();
    10501051          }
     
    10541055          if (!count_Factors(res,w,j,ff,convFactoryAPSingAP( J.getItem().factor() )))
    10551056          {
    1056             (*w)[j]=1;
     1057            if (w!=NULL)
     1058              (*w)[j]=1;
    10571059            res->m[j]=pOne();
    10581060          }
Note: See TracChangeset for help on using the changeset viewer.