Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Unified Diff: src/strtod.cc

Issue 4168002: Don't create empty vectors using SubVector. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/strtod.cc
diff --git a/src/strtod.cc b/src/strtod.cc
index 76e2bc4a06d83c6ad95ce493c88833a8fb527cd5..0ed1b0d914791280dea19a54837ebc6673f164ec 100644
--- a/src/strtod.cc
+++ b/src/strtod.cc
@@ -128,7 +128,7 @@ static Vector<const char> TrimLeadingZeros(Vector<const char> buffer) {
return buffer.SubVector(i, buffer.length());
}
}
- return buffer.SubVector(0, 0);
+ return Vector<const char>(buffer.start(), 0);
}
@@ -138,7 +138,7 @@ static Vector<const char> TrimTrailingZeros(Vector<const char> buffer) {
return buffer.SubVector(0, i + 1);
}
}
- return buffer.SubVector(0, 0);
+ return Vector<const char>(buffer.start(), 0);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698