浏览代码

Replace WriteFileEx with WriteFile in qemu_create_pidfile

The function that writes pidfile for win32 uses WriteFileEx which is an
asynchronous IO function. The arguments given to WriteFileEx are allocated on
the stack and one of them is "in out". When the IO operation is actually
executed the calling function has already returned, so the arguments are no
longer allocated or allocated to another frame.

Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Fabien Chouteau <chouteau@adacore.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Fabien Chouteau 13 年之前
父节点
当前提交
bfc763fcfa
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. 4 3
      os-win32.c

+ 4 - 3
os-win32.c

@@ -130,14 +130,15 @@ int qemu_create_pidfile(const char *filename)
     memset(&overlap, 0, sizeof(overlap));
     memset(&overlap, 0, sizeof(overlap));
 
 
     file = CreateFile(filename, GENERIC_WRITE, FILE_SHARE_READ, NULL,
     file = CreateFile(filename, GENERIC_WRITE, FILE_SHARE_READ, NULL,
-		      OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
+                      OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
 
 
     if (file == INVALID_HANDLE_VALUE) {
     if (file == INVALID_HANDLE_VALUE) {
         return -1;
         return -1;
     }
     }
     len = snprintf(buffer, sizeof(buffer), "%d\n", getpid());
     len = snprintf(buffer, sizeof(buffer), "%d\n", getpid());
-    ret = WriteFileEx(file, (LPCVOID)buffer, (DWORD)len,
-		      &overlap, NULL);
+    ret = WriteFile(file, (LPCVOID)buffer, (DWORD)len,
+                    NULL, &overlap);
+    CloseHandle(file);
     if (ret == 0) {
     if (ret == 0) {
         return -1;
         return -1;
     }
     }