提交 928378f1 编写于 作者: O openeuler-ci-bot 提交者: Gitee

!114 fix shim static check

Merge pull request !114 from gaohuatao/ght_logs
......@@ -16,6 +16,7 @@
#include <errno.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <linux/limits.h>
#include <limits.h>
#include "terminal.h"
#include "common.h"
......@@ -69,9 +70,13 @@ static int shim_rename_old_log_file(log_terminal *terminal)
static int shim_dump_log_file(log_terminal *terminal)
{
int ret;
char *file_newname;
char *file_newname = NULL;
size_t len_path = strlen(terminal->log_path) + sizeof(".1");
if (len_path > PATH_MAX) {
return SHIM_ERR;
}
/* isulad: rotate old log file first */
ret = shim_rename_old_log_file(terminal);
if (ret != 0) {
......
......@@ -24,10 +24,6 @@
extern "C" {
#endif
#ifndef PATH_MAX
#define PATH_MAX 4096
#endif
typedef struct {
uint64_t log_maxsize;
char *log_path;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册