i just made a little program that reads the name of a file dragged over it's icon and writes it into an output text file

but if i compile this program, it crashes when i try to drag a file over it. if i open it with a doble click it's ok; if i open it with command line and parameters it's ok; but if i just drop a file over the program i have compiled, it always crashes and i don't know why

just try to compile like this:

#include <stdio.h>

int main(int argc, char * argv[])
{
    FILE * File=fopen("file.txt", "w");
    fclose(File);
    return 0;
}

if you drag&drop a simple file over that program icon, the program crashes

does anyone knows why?

link|improve this question
What operating system ? – Paul R Nov 12 '10 at 12:11
Note that on Windows you will get nonsense results with Unicode paths with that program. – Joey Nov 12 '10 at 12:18
hmm it crashes even if i open it by reading (fopen("file.txt", "r");) and ONLY if i drag a file over it. if i double click it goes well and writes the data..it's damn weird..why it should crash when i drag over it and not when i double-click it. the folder is my desktop, so i have w privileges - os: windows xp – Picio Nov 12 '10 at 14:17
feedback

1 Answer

You are probably making assumptions about the current working directory and its permissions when your executable runs. Calling fclose on an invalid FILE * (e.g. NULL) will most likely result in a crash. You need to verify that fopen succeeds, e.g.

#include <stdio.h>

int main(int argc, char * argv[])
{
    FILE * f = fopen("file.txt", "w");
    if (f != NULL)
    {
        //
        // write stuff to file here if you want...
        //
        fclose(f);
    }
    return 0;
}
link|improve this answer
@Picio: that should be pretty easy to check. Change the first line (of the original code) to FILE *File = NULL; and see if it crashes when you double-click it. – paxdiablo Nov 12 '10 at 12:24
feedback

Your Answer

 
or
required, but never shown

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