Hi all,
I find there're some problems with
"sip/communicator/impl/protocol/icq/ProtocolProviderFactoryIcqImpl.java" and
"sip/communicator/impl/protocol/gibberish/ProtocolProviderFactoryGibberishImpl.java"
which may cause NullPointException-s:
The original code:
<code>
*accountProperties.put(USER_ID, accountID.getUserID());
if (accountProperties == null)
throw new NullPointerException(
"The specified property map was null");*
</code>
After fixing:
<code>
*if (accountProperties == null)
throw new NullPointerException(
"The specified property map was null");
accountProperties.put(USER_ID, accountID.getUserID());*
</code>
The attached file is the patch.
Cheers,
Dai