New issue 10 by daire.mckenna: net.kano.joscar.SeqNum has an infinite loop
http://code.google.com/p/joscar/issues/detail?id=10
net.kano.rv.RvProcessor creates a SeqNum passing in a random Long
If the random Long is negative (which it can be), the loop in line 105
of SeqNum will run forever.
It should be using unsigned shift (>>>=) instead of signed (>>=).
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
I also found this issue.
thanks
Comment #2 on issue 10 by jadest...@gmail.com: net.kano.joscar.SeqNum has
an infinite loop
http://code.google.com/p/joscar/issues/detail?id=10
Good find! Committed to trunk.