Quellcode durchsuchen

vm-file-editor: do not overwite an existing file

Either a housekeeping file from that VM, or a similarly named
one being edited from a third VM.
Vincent Penquerc'h vor 10 Jahren
Ursprung
Commit
81e9f967be
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      qubes-rpc/vm-file-editor.c

+ 1 - 1
qubes-rpc/vm-file-editor.c

@@ -44,7 +44,7 @@ char *get_filename()
 
 void copy_file(char *filename)
 {
-	int fd = open(filename, O_WRONLY | O_CREAT, 0600);
+	int fd = open(filename, O_WRONLY | O_CREAT | O_EXCL, 0600);
 	if (fd < 0) {
 		perror("open file");
 		exit(1);