View Single Post
Old 12-17-2003, 02:34 PM   #28 (permalink)
charliex
Junkie
 
Location: North Hollywood
dimbulb, did you see my notes ? that'll allow you to at least compile what you have on visual c, the only other changes you'd have to make for compatibility is not doing

PHP Code:
{
for(
int i;i<0;i++) {}
for(
int i;i<0;i++) {}
etc..
}
instead use
{
int i;
for(
i;i<0;i++) {}
for(
i;i<0;i++) {}
etc..

which is the best approach or is the correct way of scoping, is academic since VC doesn't support the former.

if you are using gcc to compile gdb is the debugger.


also remember to turn off smiles when posting

also add the comamnd line you use to test, since its quite long apparently

yep its either freeing memory that was never allocated, corrpted or freed twice.

Last edited by charliex; 12-17-2003 at 02:55 PM..
charliex is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62