Commit 083db23e authored by thestig@chromium.org's avatar thestig@chromium.org

Fix breakpad compile on Fedora 11.

BUG=none
TEST=none
Review URL: http://codereview.chromium.org/155126

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20064 0039d316-1c4b-4281-b951-d872f2087c98
parent d5f55d00
...@@ -669,7 +669,7 @@ class MinidumpWriter { ...@@ -669,7 +669,7 @@ class MinidumpWriter {
if (entry->found) if (entry->found)
goto popline; goto popline;
if (!strncmp(line, entry->info_name, strlen(entry->info_name))) { if (!strncmp(line, entry->info_name, strlen(entry->info_name))) {
char* value = strchr(line, ':'); const char* value = strchr(line, ':');
if (!value) if (!value)
goto popline; goto popline;
...@@ -693,7 +693,7 @@ class MinidumpWriter { ...@@ -693,7 +693,7 @@ class MinidumpWriter {
// special case for vendor_id // special case for vendor_id
if (!strncmp(line, vendor_id_name, vendor_id_name_length)) { if (!strncmp(line, vendor_id_name, vendor_id_name_length)) {
char* value = strchr(line, ':'); const char* value = strchr(line, ':');
if (!value) if (!value)
goto popline; goto popline;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment