i've written a code that simply forks a process,executes a command thru
execve() and exits,wherein i've used
char *fildes;
allocated a char sting to fildes by
char *itoa(int x)
filedes=itoa(3);
and then execve(args[0],args,env);
wherein on of the contents of args[0] is fildes.
now when i do
free(fildes);
I get error
*** glibc detected *** free(): invalid pointer: 0x080a6bfe ***
Aborted.
can u tell wotz prob with the code.
ANY INPUT IS APPRECIATED
|
Go4Expert Founder
|
![]() |
| 2Feb2007,15:47 | #2 |
|
Looks like fildes is not a valid pointer.
|
|
Newbie Member
|
|
| 2Feb2007,16:08 | #3 |
|
wotz the solution for it???
the thing is that i've used this program inthe initrd image ,though this error occurs everytime but my system does boot.but the main problem is once in every 3-4 boots the system panics, and i believe this is the cause of it. so wot can be the solution??? |
|
Go4Expert Founder
|
![]() |
| 2Feb2007,17:44 | #4 |
|
Try freeing it only when its valid and assign a null by default so you know if its not null you free it.
|
|
Team Leader
|
![]() |
| 4Feb2007,00:36 | #5 |
|
Assigning a value to a pointer is NOT allocating it. You can only free a pointer that your have gotten from malloc or its variants.
|


