Chromium Code Reviews

Unified Diff: src/processor/basic_source_line_resolver.cc

Issue 1292503005: Don't use strtok_s for mingw builds (Closed) Base URL: http://google-breakpad.googlecode.com/svn/trunk/
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | src/processor/cfi_frame_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/processor/basic_source_line_resolver.cc
===================================================================
--- src/processor/basic_source_line_resolver.cc (revision 1490)
+++ src/processor/basic_source_line_resolver.cc (working copy)
@@ -56,7 +56,9 @@
namespace google_breakpad {
#ifdef _WIN32
+#ifdef _MSC_VER
#define strtok_r strtok_s
+#endif
#define strtoull _strtoui64
#endif
« no previous file with comments | « no previous file | src/processor/cfi_frame_info.cc » ('j') | no next file with comments »

Powered by Google App Engine