Index: include/regex
===================================================================
--- include/regex	(revision 185241)
+++ include/regex	(working copy)
@@ -3904,7 +3904,7 @@
         {
             __val = 8 * __val + *__first - '0';
             if (++__first != __last && ('0' <= *__first && *__first <= '7'))
-                __val = 8 * __val + *__first - '0';
+                __val = 8 * __val + *__first++ - '0';
         }
         if (__str)
             *__str = _CharT(__val);
Index: CREDITS.TXT
===================================================================
--- CREDITS.TXT	(revision 185241)
+++ CREDITS.TXT	(working copy)
@@ -33,6 +33,10 @@
 E: marshall@idio.com
 D: Minor patches and bug fixes.
 
+N: Bill Fisher
+E: william.w.fisher@gmail.com
+D: Regex bug fixes.
+
 N: Google Inc.
 D: Copyright owner and contributor of the CityHash algorithm
 
