Jürgen Keil
2006-Sep-25 08:34 UTC
[qemu-discuss] [PATCH]: monitor''s "info" command crashes qemu
(I''ve send a similar patch to qemu-devel at nongnu.org) The monitor''s "info" command crashes qemu on Solaris. Apparently a NULL pointer is passed as argument for a "%s" printf format string. The "info capture" command has a missing "params" string (help string is used as params structure member and help structure member is NULL). diff -ru qemu-0.8.2-solaris-orig/monitor.c qemu-0.8.2-solaris/monitor.c --- qemu-0.8.2-solaris-orig/monitor.c 2006-07-22 19:23:34.000000000 +0200 +++ qemu-0.8.2-solaris/monitor.c 2006-09-23 11:46:26.808220031 +0200 @@ -1237,7 +1237,7 @@ { "profile", "", do_info_profile, "", "show profiling information", }, { "capture", "", do_info_capture, - "show capture information" }, + "", "show capture information" }, { NULL, NULL, }, }; -- This message posted from opensolaris.org