[Fb-contrib-commit] SF.net SVN: fb-contrib: [895] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/d
Brought to you by:
dbrosius
From: <dbr...@us...> - 2007-06-29 05:55:40
|
Revision: 895 http://svn.sourceforge.net/fb-contrib/?rev=895&view=rev Author: dbrosius Date: 2007-06-28 22:55:41 -0700 (Thu, 28 Jun 2007) Log Message: ----------- fix ifeq checking of loops Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UseAddAll.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UseAddAll.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UseAddAll.java 2007-06-29 05:41:13 UTC (rev 894) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UseAddAll.java 2007-06-29 05:55:41 UTC (rev 895) @@ -160,7 +160,7 @@ brOffset <<= 8; brOffset |= (0x0FF & code[gotoPos+2]); gotoPos += brOffset; - if (brOffset < getPC()) { + if (gotoPos < getPC()) { OpcodeStack.Item itm = stack.getStackItem(0); uValue = (Integer)itm.getUserValue(); if (uValue != null) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |