* luci/libs: properly handle overflows in luci.ip.add()
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 8 Aug 2008 13:45:09 +0000 (13:45 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 8 Aug 2008 13:45:09 +0000 (13:45 +0000)
libs/core/luasrc/ip.lua

index 2fe7129..761a781 100644 (file)
@@ -382,8 +382,10 @@ function cidr.add( self, amount )
                local add = ( #shorts > 0 ) and table.remove( shorts, #shorts ) or 0
                if ( data[pos] + add ) > 0xFFFF then
                        data[pos] = ( data[pos] + add ) % 0xFFFF
-                       if pos > 2 then
+                       if pos > 1 then
                                data[pos-1] = data[pos-1] + ( add - data[pos] )
+                       else
+                               return nil
                        end
                else
                        data[pos] = data[pos] + add