Changeset 16446
- Timestamp:
- Feb 13, 2008, 3:28:20 PM (18 years ago)
- Location:
- trunk/Ohana/src/opihi
- Files:
-
- 4 edited
-
cmd.data/cut.c (modified) (2 diffs)
-
cmd.data/vgauss.c (modified) (2 diffs)
-
cmd.data/vmaxwell.c (modified) (2 diffs)
-
lib.shell/startup.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/cmd.data/cut.c
r7917 r16446 76 76 yvec[0].elements[i] = value; 77 77 } 78 free (Vbuf); 78 79 break; 79 80 … … 108 109 yvec[0].elements[i] = value; 109 110 } 111 free (Vbuf); 110 112 break; 111 113 -
trunk/Ohana/src/opihi/cmd.data/vgauss.c
r10307 r16446 10 10 return (FALSE); \ 11 11 } \ 12 V = atof (c); 12 V = atof (c); \ 13 free (c); 13 14 14 15 int vgauss (int argc, char **argv) { … … 83 84 } 84 85 86 free (dy); 85 87 mrqfree (Npar); 86 88 return (TRUE); -
trunk/Ohana/src/opihi/cmd.data/vmaxwell.c
r10069 r16446 10 10 return (FALSE); \ 11 11 } \ 12 V = atof (c); 12 V = atof (c); \ 13 free (c); 13 14 14 15 int vmaxwell (int argc, char **argv) { … … 83 84 } 84 85 86 free (dy); 85 87 mrqfree (Npar); 86 88 return (TRUE); -
trunk/Ohana/src/opihi/lib.shell/startup.c
r15008 r16446 66 66 read_history (opihi_history); 67 67 } 68 if (opihi_history) free (opihi_history); 68 69 } 69 70 … … 126 127 status = command (line, &outline, TRUE); 127 128 if (outline != (char *) NULL) free (outline); 129 if (rcfile) free (rcfile); 128 130 } 129 131
Note:
See TracChangeset
for help on using the changeset viewer.
