aboutsummaryrefslogtreecommitdiffstats
path: root/android/console.c
diff options
context:
space:
mode:
authorDavid Turner <>2009-04-14 14:43:24 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-04-14 14:43:24 -0700
commit7d9a2705e7ae6d8c4b1d9d5b4e2a67ab88c19044 (patch)
treec02694997e920cda9e6c756984436d438fc6e5bf /android/console.c
parent4735694ff99078f961876525ebbd55317956083f (diff)
downloadexternal_qemu-7d9a2705e7ae6d8c4b1d9d5b4e2a67ab88c19044.zip
external_qemu-7d9a2705e7ae6d8c4b1d9d5b4e2a67ab88c19044.tar.gz
external_qemu-7d9a2705e7ae6d8c4b1d9d5b4e2a67ab88c19044.tar.bz2
AI 146183: am: CL 145975 am: CL 145805 Fix a bug in android/console.c that prevented the console "redir add" command from working properly
Fix a bug in sock_address_init_resolve which caused a crashed when getaddrinfo() returned an error. Original author: digit Merged from: //branches/cupcake/... Original author: android-build Automated import of CL 146183
Diffstat (limited to 'android/console.c')
-rw-r--r--android/console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/console.c b/android/console.c
index 3a769c1..a8560f4 100644
--- a/android/console.c
+++ b/android/console.c
@@ -912,7 +912,7 @@ do_redir_add( ControlClient client, char* args )
return -1;
}
- if (!inet_strtoip("10.0.2.15", &guest_ip)) {
+ if (inet_strtoip("10.0.2.15", &guest_ip) < 0) {
control_write( client, "KO: unexpected internal failure when resolving 10.0.2.15\r\n" );
return -1;
}