GNOME Bugzilla – Bug 138699
Temporary ISOs should be created somewhere other than the home directory.
Last modified: 2006-05-20 20:34:45 UTC
When you burn an image to CD the temporary ISO is created in the user's home directory. It should be created somewhere less obvious, so it can't be corrupted by curious users while the CD is burning, possibly ~/.gnome2.
The order of directories used is the one used in "/apps/nautilus-cd-burner/temp_iso_dir", the temp directory, and the home dir. Make some room on your HD...
I agree that the home fallback should probably be in some subdir, and not in such a visible place as ~/
Created attachment 26798 [details] [review] This patch will correct the problem with temp_iso_dir gconf's setting
I'm sorry with my post. I'm new with bugzilla interface. The patch above will correct the problem with gconf's /apps/nautilus-cd-burner/temp_iso_dir. n-c-d doesn't reading this setting properly, thus n-c-d creates the iso imagens in the temp dir or home dir (depends how your environment is configured).
Close, but no cigar. if (path != NULL || strcmp (path, "") != 0) { You would do an strcmp with NULL if path == NULL... Committed to gnome-2-6 and HEAD 2004-04-19 Bastien Nocera <hadess@hadess.net> * nautilus-cd-burner.c: (burn_cd): fix logic in using the temp_dir for temp ISOs (Closes: #138699)
Ah, yes! You're correct! This my fault! Sorry! :)