From 58ee2acba8953814cc4bf65d2f28f7dd498b5779 Mon Sep 17 00:00:00 2001 From: Hung-ying Tyan Date: Thu, 16 Dec 2010 20:46:50 +0800 Subject: Check port in create peer's SIP profile. SipURI returns port -1 when port is not present in the URI. Don't call SipProfile.Builder.setPort() when that happens. Bug: 3291248 Change-Id: I8e608cbc56ea82862df55fdba885f6a864db83ab --- voip/java/android/net/sip/SipProfile.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'voip/java/android') diff --git a/voip/java/android/net/sip/SipProfile.java b/voip/java/android/net/sip/SipProfile.java index 4029ed0..f8fd2b7 100644 --- a/voip/java/android/net/sip/SipProfile.java +++ b/voip/java/android/net/sip/SipProfile.java @@ -177,7 +177,7 @@ public class SipProfile implements Parcelable, Serializable, Cloneable { */ public Builder setPort(int port) throws IllegalArgumentException { if ((port > 65535) || (port < 1000)) { - throw new IllegalArgumentException("incorrect port arugment"); + throw new IllegalArgumentException("incorrect port arugment: " + port); } mProfile.mPort = port; return this; -- cgit v1.1