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

Issue 10823181: Account for '\0' string terminator in allocated buffers. (Closed)

Created:
8 years, 4 months ago by Kevin Millikin (Google)
Modified:
8 years, 4 months ago
Reviewers:
srdjan
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Account for '\0' string terminator in allocated buffers. OS::SNPrint takes a size in bytes argument that includes the null terminator, it returns the number of characters printed not including the null terminator. Unfortunately we don't have a uniform way of writing this. This change fixes three sites that do not account for the terminator when writing, with the effect of dropping the last character before the terminator. R=srdjan@google.com BUG= Committed: https://code.google.com/p/dart/source/detail?r=10329

Patch Set 1 #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+5 lines, -5 lines) Patch
M runtime/vm/object.cc View 3 chunks +5 lines, -5 lines 2 comments Download

Messages

Total messages: 3 (0 generated)
Kevin Millikin (Google)
8 years, 4 months ago (2012-08-06 11:17:36 UTC) #1
srdjan
LGTM and thanks! https://chromiumcodereview.appspot.com/10823181/diff/1/runtime/vm/object.cc File runtime/vm/object.cc (right): https://chromiumcodereview.appspot.com/10823181/diff/1/runtime/vm/object.cc#newcode6936 runtime/vm/object.cc:6936: intptr_t len = 1; Add comment: ...
8 years, 4 months ago (2012-08-06 16:07:19 UTC) #2
Kevin Millikin (Google)
8 years, 4 months ago (2012-08-07 10:07:59 UTC) #3
https://chromiumcodereview.appspot.com/10823181/diff/1/runtime/vm/object.cc
File runtime/vm/object.cc (right):

https://chromiumcodereview.appspot.com/10823181/diff/1/runtime/vm/object.cc#n...
runtime/vm/object.cc:6936: intptr_t len = 1;
On 2012/08/06 16:07:19, srdjan wrote:
> Add comment: // Trailing '\0'.

Done.

Powered by Google App Engine
This is Rietveld 408576698