Bug 637316 - Forgot replacement of memcmp with my_strncmp in part 2. r=me

This commit is contained in:
Mike Hommey 2011-03-14 15:28:44 +01:00
Родитель 7e5550d72b
Коммит 1dff3f39b3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -339,7 +339,7 @@ LinuxDumper::EnumerateMappings(wasteful_vector<MappingInfo*>* result) const {
MappingInfo* module = (*result)[result->size() - 1];
if ((start_addr == module->start_addr + module->size) &&
(my_strlen(name) == my_strlen(module->name)) &&
(memcmp(name, module->name, my_strlen(name)) == 0)) {
(my_strncmp(name, module->name, my_strlen(name)) == 0)) {
module->size = end_addr - module->start_addr;
line_reader->PopLine(line_len);
continue;