Changeset 3ee806 in git for libpolys


Ignore:
Timestamp:
Aug 6, 2013, 1:52:48 PM (11 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
537733fc1137fef8870804ba8fd5021dbcafa68d
Parents:
0f79d91b1d5a587de7ba5307dd597603e5815525
Message:
fix: convert to string: allways return defined results
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/bigintmat.cc

    r0f79d9 r3ee806  
    379379{
    380380  if ((col==0) || (row==0))
    381     PrintS("");
     381    return NULL;
    382382  else
    383383  {
    384384    int * colwid = getwid(80);
    385     char * ps;
    386385    if (colwid == NULL)
    387386    {
    388387      WerrorS("not enough space to print bigintmat");
    389388      WerrorS("try string(...) for a unformatted output");
    390       return ps;
    391     }
     389      return NULL;
     390    }
     391    char * ps;
    392392    int slength = 0;
    393393    for (int j=0; j<col; j++)
Note: See TracChangeset for help on using the changeset viewer.