Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I read tons of tutos and snippets, but I still don't understand why I get a segfault with this:

int fun(char **p) {

  int i;

  *p = malloc(2);
  *p[0]=10;
  *p[1]=20; // segfault NULL pointer

  printf("fun()/n");
  for (i=0; i<2; i++)
   printf("%d ",*p[i]);
}

int main(int argc, const char *argv[])
{
  char* buffer;
  int i;

  fun(&buffer);

  printf("main()\n");

  for (i=0; i<2; i++)
   printf("%d ",buffer[i]);

  return 0;
}

In gdb, it gives:

Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_INVALID_ADDRESS at address: 0x0000000000000000
0x0000000100000dea in fun (p=0x7fff5fbffab0) at test.c:10
10    *p[1]=20;
(gdb) p *p[0]
$1 = 10 '\n'
(gdb) p *p[1]
Cannot access memory at address 0x0
(gdb)

I have seen a lot of similar snippets, but there is surely something I am deeply misunderstanding.

Thank you in advance for your kind help!

share|improve this question
2  
I feel strangely guarded when someone learns from "tons of tutos and snippets"... – Kerrek SB Nov 15 '12 at 17:07
1  
You should check your malloc call for errors. – squiguy Nov 15 '12 at 17:07
@KerrekSB: Very interesting. Who are you and do you happen to know? – phocean Nov 15 '12 at 19:10
@phocean: Well, for starters I've seen a good share of "tutos and snippets" in the wild, and similar questions; and moreover I know a bit about the complexity of C++ and wonder if one can tackle it if spelling out "tutorial" is taxing the attention span already... :-) (But do have a look at our recommended book list!) – Kerrek SB Nov 15 '12 at 19:15

1 Answer

up vote 4 down vote accepted

You mean (*p)[1]. What you said is *(p[1]).

share|improve this answer
That was it. But sad to read your other comment. You didn't respect me without knowing. And where is the crime to begin in C, not understanding something and ask a question? I spent days on a shitty syntax issue. So what? Thanks anyway. – phocean Nov 15 '12 at 19:13
@phocean: Hey, no offense, and best of luck! Spend some time on SO if you like, I'm sure it'll be a rewarding experience. You'll be answering questions yourself in no time. – Kerrek SB Nov 15 '12 at 19:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.