Просмотр исходного кода

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 10 лет назад
Родитель
Сommit
81e9f967be
1 измененных файлов с 1 добавлено и 1 удалено
  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);