Checks in select_soundhw were never intended to accept abbreviations
[qemu] / vl.c
diff --git a/vl.c b/vl.c
index 6e014f1..098daaa 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -4526,7 +4526,7 @@ static void select_soundhw (const char *optarg)
             l = !e ? strlen (p) : (size_t) (e - p);
 
             for (c = soundhw; c->name; ++c) {
-                if (!strncmp (c->name, p, l)) {
+                if (!strncmp (c->name, p, l) && !c->name[l]) {
                     c->enabled = 1;
                     break;
                 }