From: Dave B. <bla...@us...> - 2013-09-12 13:59:04
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv25971/src/org/sblim/cimclient Modified Files: WBEMListenerSBLIM.java Log Message: 2657 Potential null pointer exception in handleConnection Index: WBEMListenerSBLIM.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/WBEMListenerSBLIM.java,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- WBEMListenerSBLIM.java 30 May 2013 12:25:24 -0000 1.23 +++ WBEMListenerSBLIM.java 12 Sep 2013 13:59:02 -0000 1.24 @@ -29,6 +29,7 @@ * 3529065 2012-05-31 hellerda Enable WBEMListener get/setProperty * 2628 2013-03-26 blaschke-oss Limit size of LinkedList of CIMEvents to be dispatched * 2635 2013-05-16 blaschke-oss Slowloris DoS attack for CIM indication listener port + * 2657 2013-08-20 blaschke-oss Potential null pointer exception in handleConnection */ package org.sblim.cimclient; @@ -173,8 +174,7 @@ } /** - * Get the IPs blocked by the listener associated with the specified - * port. + * Get the IPs blocked by the listener. * * @return The comma-separated list of blocked IPs. */ @@ -183,8 +183,7 @@ } /** - * Set the IPs to be blocked by the listener associated with the - * specified port. + * Set the IPs to be blocked by the listener. * * @param pIPs * The comma-separated list of blocked IPs. |