Skip to content
Snippets Groups Projects
Commit 491dfb11 authored by Elliott Hughes's avatar Elliott Hughes Committed by android-build-merger
Browse files

Fix scanf %s in lsof.

am: 008efb75

* commit '008efb75':
  Fix scanf %s in lsof.

Change-Id: I608ae2094649617308b45571df1b649724ec8ac3
parents 9c440272 008efb75
No related branches found
No related tags found
No related merge requests found
...@@ -99,13 +99,12 @@ out: ...@@ -99,13 +99,12 @@ out:
static void print_maps(struct pid_info_t* info) static void print_maps(struct pid_info_t* info)
{ {
FILE *maps; FILE *maps;
char buffer[PATH_MAX + 100];
size_t offset; size_t offset;
int major, minor; int major, minor;
char device[10]; char device[10];
long int inode; long int inode;
char file[PATH_MAX]; char file[1024];
strlcat(info->path, "maps", sizeof(info->path)); strlcat(info->path, "maps", sizeof(info->path));
...@@ -113,8 +112,8 @@ static void print_maps(struct pid_info_t* info) ...@@ -113,8 +112,8 @@ static void print_maps(struct pid_info_t* info)
if (!maps) if (!maps)
goto out; goto out;
while (fscanf(maps, "%*x-%*x %*s %zx %5s %ld %s\n", &offset, device, &inode, while (fscanf(maps, "%*x-%*x %*s %zx %5s %ld %1023s\n",
file) == 4) { &offset, device, &inode, file) == 4) {
// We don't care about non-file maps // We don't care about non-file maps
if (inode == 0 || !strcmp(device, "00:00")) if (inode == 0 || !strcmp(device, "00:00"))
continue; continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment