Changeset a7a94ed in git
- Timestamp:
- Jan 6, 2010, 1:27:29 PM (13 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- b46774f2ffde4294abff59d9fdb51d1914924c72
- Parents:
- 8cc23471085d8b316b9e069e3af261cb141cccea
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/hilb.cc
r8cc234 ra7a94ed 217 217 intvec *work, *hseries1=NULL; 218 218 int mc; 219 int *p0;219 int p0; 220 220 int i, j, k, l, ii, mw; 221 221 hexist = hInit(S, Q, &hNexist, tailRing); … … 237 237 #endif 238 238 239 p0 = (int *)omAllocBin(int_bin); 240 *p0 = 1; 239 p0 = 1; 241 240 hwork = (scfmon)omAlloc(hNexist * sizeof(scmon)); 242 241 hvar = (varset)omAlloc((pVariables + 1) * sizeof(int)); … … 285 284 hLexS(hstc, hNstc, hvar, hNvar); 286 285 Q0[hNvar] = 0; 287 hHilbStep(hpure, hstc, hNstc, hvar, hNvar, p0, 1);286 hHilbStep(hpure, hstc, hNstc, hvar, hNvar, &p0, 1); 288 287 } 289 288 } … … 361 360 omFreeSize((ADDRESS)hwork, hNexist * sizeof(scmon)); 362 361 hDelete(hexist, hNexist); 363 omFreeBin((ADDRESS)p0, int_bin);364 362 if (hisModule!=0) 365 363 omFreeSize((ADDRESS)hstc, hNexist * sizeof(scmon)); -
kernel/structs.h
r8cc234 ra7a94ed 38 38 39 39 /* EXPONENT_TYPE is determined by configure und defined in mod2.h */ 40 /* the following defines should really go into mod2.h,41 but configure dislikes it */42 43 #define HAVE_IDI 144 40 45 41 #if defined(SI_CPU_I386) || defined(SI_CPU_X86_64) … … 939 935 short lev; 940 936 short ref; 941 #ifdef HAVE_IDI942 937 int id_i; 943 #endif944 938 945 939 #define IDNEXT(a) ((a)->next)
Note: See TracChangeset
for help on using the changeset viewer.