resolve merge conflicts of 7f5da85 to lmp-dev
am: de529e72b6
* commit 'de529e72b63c135053711ceb27a043f8d80e308c':
Fix scanf %s in lsof.
Change-Id: I4dc617bbe052059b04296e4213fb778fbf3cf8eb
diff --git a/toolbox/lsof.c b/toolbox/lsof.c
index bee981d..655806d 100644
--- a/toolbox/lsof.c
+++ b/toolbox/lsof.c
@@ -99,10 +99,11 @@
static void print_maps(struct pid_info_t* info)
{
FILE *maps;
+
size_t offset;
char device[10];
long int inode;
- char file[PATH_MAX];
+ char file[1024];
strlcat(info->path, "maps", sizeof(info->path));
@@ -110,8 +111,8 @@
if (!maps)
goto out;
- while (fscanf(maps, "%*x-%*x %*s %zx %s %ld %s\n", &offset, device, &inode,
- file) == 4) {
+ while (fscanf(maps, "%*x-%*x %*s %zx %5s %ld %1023s\n",
+ &offset, device, &inode, file) == 4) {
// We don't care about non-file maps
if (inode == 0 || !strcmp(device, "00:00"))
continue;