Fix a crash with monitor input arriving before readline_start has been called
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 30 Nov 2007 16:45:21 +0000 (16:45 +0000)
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 30 Nov 2007 16:45:21 +0000 (16:45 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3749 c046a42c-6fe2-441c-8c8c-71466251a162

monitor.c

index 4a9e8bb..dd85f84 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -2583,6 +2583,8 @@ void monitor_init(CharDriverState *hd, int show_banner)
     hide_banner = !show_banner;
 
     qemu_chr_add_handlers(hd, term_can_read, term_read, term_event, NULL);
+
+    readline_start("", 0, monitor_handle_command1, NULL);
 }
 
 /* XXX: use threads ? */