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

Unified Diff: test/cctest/test-api.cc

Issue 52004: Fixed windows build. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 9 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: test/cctest/test-api.cc
===================================================================
--- test/cctest/test-api.cc (revision 1569)
+++ test/cctest/test-api.cc (working copy)
@@ -1341,7 +1341,7 @@
CHECK_EQ(x, 10);
// Make sure unaligned pointers are wrapped properly.
- char* data = strdup("0123456789");
+ char* data = i::StrDup("0123456789");
Local<v8::External> zero = v8::External::New(&data[0]);
Local<v8::External> one = v8::External::New(&data[1]);
Local<v8::External> two = v8::External::New(&data[2]);
@@ -1355,7 +1355,7 @@
CHECK_EQ('2', *char_ptr);
char_ptr = reinterpret_cast<char*>(three->Value());
CHECK_EQ('3', *char_ptr);
- free(data);
+ i::DeleteArray(data);
}
« 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