Merge "Another bug fix for line numbers. Line uses signed in advancing." into dalvik-dev
diff --git a/src/dex_file.cc b/src/dex_file.cc
index 0a18f11..57ff2e3 100644
--- a/src/dex_file.cc
+++ b/src/dex_file.cc
@@ -686,7 +686,7 @@
         break;
 
       case DBG_ADVANCE_LINE:
-        line += DecodeUnsignedLeb128(&stream);
+        line += DecodeSignedLeb128(&stream);
         break;
 
       case DBG_START_LOCAL: