Merge "Suppress false-positive static analyzer warnings"
am: 0c89aaec1f
Change-Id: Ifa3e4010ee1ce152f17bdc14f4e73d647c05a76a
This commit is contained in:
commit
2ee27bfd0d
|
@ -222,6 +222,7 @@ static int LogBufferLog(struct LogBuffer* log,
|
|||
log->last[logId] = node->prev;
|
||||
}
|
||||
list_remove(node);
|
||||
LOG_ALWAYS_FATAL_IF(node == log->last[logId], "corrupted list");
|
||||
free(e);
|
||||
}
|
||||
/* add entry to list */
|
||||
|
|
|
@ -250,6 +250,7 @@ LIBLOG_ABI_PUBLIC void android_log_format_free(AndroidLogFormat* p_format) {
|
|||
while (!list_empty(&convertHead)) {
|
||||
struct listnode* node = list_head(&convertHead);
|
||||
list_remove(node);
|
||||
LOG_ALWAYS_FATAL_IF(node == list_head(&convertHead), "corrupted list");
|
||||
free(node);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue