[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH] block: Prevent /dev/fd/X filename from being detect
From: |
root |
Subject: |
[Qemu-devel] [PATCH] block: Prevent /dev/fd/X filename from being detected as floppy |
Date: |
Wed, 13 Jun 2012 10:30:59 -0400 |
From: Corey Bryant <address@hidden>
Reported-by: Kevin Wolf <address@hidden>
Signed-off-by: Corey Bryant <address@hidden>
---
block/raw-posix.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/block/raw-posix.c b/block/raw-posix.c
index d8eff2f..68886cd 100644
--- a/block/raw-posix.c
+++ b/block/raw-posix.c
@@ -946,9 +946,11 @@ static int floppy_probe_device(const char *filename)
int prio = 0;
struct floppy_struct fdparam;
struct stat st;
+ const char *p;
- if (strstart(filename, "/dev/fd", NULL))
+ if (strstart(filename, "/dev/fd", &p) && p[0] != '/') {
prio = 50;
+ }
fd = qemu_open(filename, O_RDONLY | O_NONBLOCK);
if (fd < 0) {
--
1.7.10.2
- [Qemu-devel] [PATCH] block: Prevent /dev/fd/X filename from being detected as floppy,
root <=