Changeset 6b32a6b in git


Ignore:
Timestamp:
Aug 23, 2013, 2:48:29 PM (11 years ago)
Author:
Janko Boehm <boehm@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
9501beec95047fabf7e8228209b1d4eed61b1c29
Parents:
3b214c36377a112627c5c625e4f381a446911269
git-author:
Janko Boehm <boehm@mathematik.uni-kl.de>2013-08-23 14:48:29+02:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-09-02 17:49:00+02:00
Message:
fixed segmentation fault for denominator of zero rational function
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/ext_fields/transext.cc

    r3b214c3 r6b32a6b  
    378378  COM (result)= 0;
    379379
    380 
     380  if (a==NULL)
     381  {
     382    NUM (result)= p_One(ntRing);
     383    return (number)result;
     384  }   
    381385  const BOOLEAN denis1 = DENIS1 (f);
    382 
     386 
    383387  if( IS0(f) || (denis1 && getCoeffType (ntCoeffs) != n_Q) ) // */1 or 0
    384388  {
Note: See TracChangeset for help on using the changeset viewer.