Updating to ints from unsigned ints so -1 will be an acceptable value.

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@777 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
jessicag.feedback@gmail.com 2011-03-03 00:42:11 +00:00
parent 248d340b71
commit 68b256aed3
3 changed files with 4 additions and 5 deletions

View File

@ -204,7 +204,7 @@ LinuxDumper::BuildProcPath(char* path, pid_t pid, const char* node) const {
bool
LinuxDumper::ElfFileIdentifierForMapping(const MappingInfo& mapping,
unsigned int mapping_id,
int mapping_id,
uint8_t identifier[sizeof(MDGUID)])
{
assert(mapping_id == -1 || mapping_id < mappings_.size());

View File

@ -154,7 +154,7 @@ class LinuxDumper {
// Generate a File ID from the .text section of a mapped entry.
// mapping_id may be -1 if this is not a member of mappings_.
bool ElfFileIdentifierForMapping(const MappingInfo& mapping,
unsigned int mapping_id,
int mapping_id,
uint8_t identifier[sizeof(MDGUID)]);
// Utility method to find the location of where the kernel has

View File

@ -820,10 +820,9 @@ class MinidumpWriter {
// Fill the MDRawModule |mod| with information about the provided
// |mapping|. If |identifier| is non-NULL, use it instead of calculating
// a file ID from the mapping. |mapping_id| can be -1 if this mapping
// is not from the LinuxDumper.
// a file ID from the mapping. |mapping_id| can be -1.
bool FillRawModule(const MappingInfo& mapping,
unsigned int mapping_id,
int mapping_id,
MDRawModule& mod,
const u_int8_t* identifier) {
my_memset(&mod, 0, MD_MODULE_SIZE);