Changeset f20518 in git
- Timestamp:
- Apr 9, 2019, 3:00:16 PM (4 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- 71d8cc963194f7a7d75dd63c8856982987161c3c
- Parents:
- bc2ffb3ac3495d903c975099bc679854cfae5a29
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/monomials/ring.cc
rbc2ffb rf20518 3902 3902 { 3903 3903 id_Delete(&r->typ[i].data.is.F, r); 3904 r->typ[i].data.is.F = NULL; // ?3905 3904 3906 3905 if( r->typ[i].data.is.pVarOffset != NULL ) 3907 3906 { 3908 3907 omFreeSize((ADDRESS)r->typ[i].data.is.pVarOffset, (r->N +1)*sizeof(int)); 3909 r->typ[i].data.is.pVarOffset = NULL; // ?3910 3908 } 3911 3909 } … … 3914 3912 if(r->typ[i].data.syz.limit > 0) 3915 3913 omFreeSize(r->typ[i].data.syz.syz_index, ((r->typ[i].data.syz.limit) +1)*sizeof(int)); 3916 r->typ[i].data.syz.syz_index = NULL;3917 3914 } 3918 3915 else if (r->typ[i].ord_typ == ro_syzcomp) … … 3933 3930 3934 3931 omFreeSize((ADDRESS)r->VarOffset, (r->N +1)*sizeof(int)); 3932 r->VarOffset=NULL; 3935 3933 3936 3934 if (r->ordsgn != NULL && r->CmpL_Size != 0) 3935 { 3937 3936 omFreeSize((ADDRESS)r->ordsgn,r->ExpL_Size*sizeof(long)); 3937 r->ordsgn=NULL; 3938 } 3938 3939 if (r->p_Procs != NULL) 3940 { 3939 3941 omFreeSize(r->p_Procs, sizeof(p_Procs_s)); 3942 r->p_Procs=NULL; 3943 } 3940 3944 omfreeSize(r->VarL_Offset, r->VarL_Size*sizeof(int)); 3945 r->VarL_Offset=NULL; 3941 3946 } 3942 3947 if (r->NegWeightL_Offset!=NULL)
Note: See TracChangeset
for help on using the changeset viewer.