qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [Patch] fix segfault of qemu-system-arm


From: Torsten Duwe
Subject: [Qemu-devel] [Patch] fix segfault of qemu-system-arm
Date: Sat, 15 Aug 2009 14:13:24 +0200
User-agent: KMail/1.9.10

qemu-system-arm (0.10.5) segfaults when invoked with a PXA machine target, 
e.g. -M tosa. The reason is fairly obvious:

--- qemu-0.10.5/hw/zaurus.c.orig        2009-05-20 22:46:59.000000000 +0200
+++ qemu-0.10.5/hw/zaurus.c     2009-08-15 01:45:57.000000000 +0200
@@ -160,7 +160,7 @@
 
 void scoop_gpio_set(void *opaque, int line, int level)
 {
-    struct scoop_info_s *s = (struct scoop_info_s *) s;
+    struct scoop_info_s *s = (struct scoop_info_s *) opaque;
 
     if (level)
         s->gpio_level |= (1 << line);

The same problem exists in the curent git.

        Torsten




reply via email to

[Prev in Thread] Current Thread [Next in Thread]