summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMichael Tokarev <mjt@tls.msk.ru>2013-01-17 14:53:52 +0400
committerStefan Hajnoczi <stefanha@redhat.com>2013-01-21 11:08:05 +0100
commit5facfb4934221cac2c267e529d7ebab165103bc9 (patch)
tree27c28b672b0f5bd91a4708eb61fce13e35bdb626
parentd0f54533eb484028f54d3f9810d504cb63f323ee (diff)
downloadfocaccia-qemu-5facfb4934221cac2c267e529d7ebab165103bc9.tar.gz
focaccia-qemu-5facfb4934221cac2c267e529d7ebab165103bc9.zip
acpitable: open the data file in binary mode
-acpitable {file|data}=file reads the content of file, but it is
in binary form, so the file should be opened usin O_BINARY flag.
On *nix it is a no-op, but on windows and other weird platform
it is really needed.

Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
-rw-r--r--hw/acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/acpi.c b/hw/acpi.c
index 97617c4ef5..8c9dcc51c4 100644
--- a/hw/acpi.c
+++ b/hw/acpi.c
@@ -104,7 +104,7 @@ int acpi_table_add(const char *t)
     /* now read in the data files, reallocating buffer as needed */
 
     for (f = strtok(buf, ":"); f; f = strtok(NULL, ":")) {
-        int fd = open(f, O_RDONLY);
+        int fd = open(f, O_RDONLY | O_BINARY);
 
         if (fd < 0) {
             fprintf(stderr, "can't open file %s: %s\n", f, strerror(errno));