Changeset 97545c in git


Ignore:
Timestamp:
Apr 25, 2020, 8:52:29 PM (3 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
e1ef7b116283b782bdf06753542a2e15e181852b
Parents:
34ac5c4176020d530d61125750c8457430cd7f22
Message:
fix: iiAssignCR
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipshell.cc

    r34ac5c r97545c  
    16301630idhdl rFindHdl(ring r, idhdl n)
    16311631{
     1632  if  ((r==NULL)||(r->VarOffset==NULL))
     1633    return NULL;
    16321634  idhdl h=rSimpleFindHdl(r,IDROOT,n);
    16331635  if (h!=NULL)  return h;
     
    65406542    memset(&tmp,0,sizeof(tmp));
    65416543    tmp.rtyp=IDHDL;
    6542     tmp.data=(char*)rDefault(ring_name);
    6543     if (tmp.data!=NULL)
    6544     {
     6544    idhdl h=rDefault(ring_name);
     6545    tmp.data=(char*)h;
     6546    if (h!=NULL)
     6547    {
     6548      tmp.name=h->id;
    65456549      BOOLEAN b=iiAssign(&tmp,arg);
    65466550      if (b) return TRUE;
Note: See TracChangeset for help on using the changeset viewer.