I have a command line app and have the code

chdir("/var");

FILE *scriptFile = fopen("wiki.txt", "w");

fputs("tell application \"Firefox\"\n activate\n",scriptFile);

fclose(scriptFile);

and when I run it in Xcode I get an EXC_BAD_ACCESS when it gets to the first fputs(); call

link|improve this question

2  
fopen(3) failed. scriptFile is NULL, which you should check for before you try to write to it. In Mac OS X, /var is not world-writable. – Jason Coco Apr 3 '10 at 3:15
feedback

3 Answers

up vote 2 down vote accepted

Probably the call to fopen() failed because you don't have write permissions in /var. In this case fopen() returns NULL and passing NULL to fputs() will cause an access violation.

link|improve this answer
2  
+1 check for error returns! – Stephen Canon Apr 3 '10 at 3:17
feedback

Are you checking to make sure the file is properly being opened?

Normally you will need superuser privileges to write into /var, so this is likely your problem.

link|improve this answer
feedback

I already answered this in the comment and a couple people have told you what you've done wrong as answers but I decided to add a little sample code with error checking:

chdir("/var");

FILE *scriptFile = fopen("wiki.txt", "w");
if( !scriptFile ) {
  fprintf(stderr, "Error opening file: %s\n", strerror(errno));
  exit(-1);
} else {
  fputs("tell application \"Firefox\"\n activate\n",scriptFile);
  fclose(scriptFile);
}

Now you will see an error if your file is not opened and it will describe why (in your case, access denied). You can make this work for testing by either 1) replacing your filename with something world writeable, like "/tmp/wiki.txt"; or 2) running your utility with privileges sudo ./your_command_name.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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