After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 138699 - Temporary ISOs should be created somewhere other than the home directory.
Temporary ISOs should be created somewhere other than the home directory.
Status: RESOLVED FIXED
Product: nautilus-cd-burner
Classification: Deprecated
Component: cd-burner
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Nautilus CD Burner Maintainers
Nautilus CD Burner Maintainers
Depends on:
Blocks: 342342
 
 
Reported: 2004-04-01 01:56 UTC by Jon Wood
Modified: 2006-05-20 20:34 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
This patch will correct the problem with temp_iso_dir gconf's setting (655 bytes, patch)
2004-04-19 00:58 UTC, Fabrício Barros Cabral
none Details | Review

Description Jon Wood 2004-04-01 01:56:35 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.
Comment 1 Bastien Nocera 2004-04-01 08:16:11 UTC
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...
Comment 2 Alexander Larsson 2004-04-01 08:33:02 UTC
I agree that the home fallback should probably be in some subdir, and not in
such a visible place as ~/
Comment 3 Fabrício Barros Cabral 2004-04-19 00:58:39 UTC
Created attachment 26798 [details] [review]
This patch will correct the problem with temp_iso_dir gconf's setting
Comment 4 Fabrício Barros Cabral 2004-04-19 01:03:52 UTC
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).
Comment 5 Bastien Nocera 2004-04-19 14:30:27 UTC
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)
Comment 6 Fabrício Barros Cabral 2004-04-19 15:07:25 UTC
Ah, yes! You're correct! This my fault! Sorry! :)