Hi,
I m getting segmentaion fault while accessing Pass in the function
GetCookie.
when i try to initialize it to zero its giving seg fault. working fine
on User.
any idea what i m doing wrong?
Thanks.
#include <stdio.h>
#include <string.h>
int main (void){
char User[16], Pass[16];
GetCookie(&User,&Pass);
}
int GetCookie(char **User, char **Pass){
bzero(*User,15);
bzero(*Pass,15);
return(1);
}
- Re: Strange problem Junaid Iqbal
- Re: Strange problem linas
- RE: Strange problem Thomas B�tzler
- Re: Strange problem Ralf Baechle
- Re: Strange problem Kurt Wall
