Merge "liblog: deal with warning messages"

am: 806bb17e76

* commit '806bb17e76d015f6192c50f20a0101573214948a':
  liblog: deal with warning messages
This commit is contained in:
Mark Salyzyn 2016-02-22 23:48:45 +00:00 committed by android-build-merger
commit cc2bff64fe
2 changed files with 4 additions and 10 deletions

View File

@ -469,13 +469,13 @@ static void showLog(LogState *state,
if (numLines > MAX_LINES)
numLines = MAX_LINES;
numVecs = numLines*3; // 3 iovecs per line.
numVecs = numLines * 3; // 3 iovecs per line.
if (numVecs > INLINE_VECS) {
vec = (struct iovec*)malloc(sizeof(struct iovec)*numVecs);
if (vec == NULL) {
msg = "LOG: write failed, no memory";
numVecs = 3;
numLines = 1;
numVecs = INLINE_VECS;
numLines = numVecs / 3;
vec = stackVec;
}
}

View File

@ -503,10 +503,7 @@ ssize_t android_logger_get_statistics(struct logger_list *logger_list,
}
if (logger_list->pid) {
n = snprintf(cp, remaining, " pid=%u", logger_list->pid);
n = min(n, remaining);
remaining -= n;
cp += n;
snprintf(cp, remaining, " pid=%u", logger_list->pid);
}
return send_log_msg(NULL, NULL, buf, len);
@ -657,7 +654,6 @@ static int android_logger_list_read_pstore(struct logger_list *logger_list,
preread_count = 0;
}
ret = 0;
while(1) {
if (preread_count < sizeof(buf)) {
ret = TEMP_FAILURE_RETRY(read(logger_list->sock,
@ -834,7 +830,6 @@ int android_logger_list_read(struct logger_list *logger_list,
if (logger_list->pid) {
ret = snprintf(cp, remaining, " pid=%u", logger_list->pid);
ret = min(ret, remaining);
remaining -= ret;
cp += ret;
}
@ -867,7 +862,6 @@ int android_logger_list_read(struct logger_list *logger_list,
logger_list->sock = sock;
}
ret = 0;
while(1) {
memset(log_msg, 0, sizeof(*log_msg));