Comment #1 on issue 111 by [email protected]: Second Record-Route header removed when parsing
http://code.google.com/p/jain-sip/issues/detail?id=111

collection.lenght is undefined in:

SIPHeaderList.prototype.addAll =function(){
if(logger!=undefined) logger.debug("SIPHeaderList:addAll():arguments="+arguments.toString());
    if(arguments.length==1)
    {

        var collection=arguments[0];
        var length=this.hlist.length;
        for(var i=0;i<collection.length;i++)
        {
            var n=i+length;
            this.hlist[n]=collection[i];
        }
        if(this.hlist.length!=length)
        {
            return true;
        }
        else
        {
            return false;
        }



Shouldn't it be collection.size() ?

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--

--- You received this message because you are subscribed to the Google Groups "mobicents-all-issues-changes" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to