Browse Source

P2P: Fix error path not to build error message twice

Jouni Malinen 13 years ago
parent
commit
70b9a5ca6a
1 changed files with 1 additions and 3 deletions
  1. 1 3
      wpa_supplicant/dbus/dbus_new_handlers_p2p.c

+ 1 - 3
wpa_supplicant/dbus/dbus_new_handlers_p2p.c

@@ -463,10 +463,8 @@ DBusMessage * wpas_dbus_handler_p2p_connect(DBusMessage *message,
 
 	if (!peer_object_path || (wps_method == WPS_NOT_READY) ||
 	    (parse_peer_object_path(peer_object_path, addr) < 0) ||
-	    (p2p_get_peer_info(wpa_s->global->p2p, addr, 0, NULL, 0) < 0)) {
-		reply = wpas_dbus_error_invalid_args(message, NULL);
+	    (p2p_get_peer_info(wpa_s->global->p2p, addr, 0, NULL, 0) < 0))
 		goto inv_args;
-	}
 
 	/*
 	 * Validate the wps_method specified and the pin value.