aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-10-13 01:00:32 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-10-13 01:00:32 +0000
commit018409c52745d12c969c5fed49cdbe2cd7bbe3dd (patch)
treed29110f02a00665a9296772627d02f532c5ff41b
parent76eeeea93884a621bf90927437b64fc5867a9abd (diff)
parent22a72a73c7bcf5c5487b8e6d0d1e429f84e62387 (diff)
downloadrecovery-android12-qpr1-d-s2-release.tar.gz
Change-Id: I0964ea8d0ce3ff681c5c70cd9a0899f1fab90173
-rw-r--r--minui/events.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/minui/events.cpp b/minui/events.cpp
index 87f81122..863ac747 100644
--- a/minui/events.cpp
+++ b/minui/events.cpp
@@ -29,7 +29,9 @@
#include <functional>
#include <memory>
+#include <string>
+#include <android-base/strings.h>
#include <android-base/unique_fd.h>
#include "minui/minui.h"
@@ -118,12 +120,12 @@ static int inotify_cb(int fd, __unused uint32_t epevents) {
}
offset += sizeof(inotify_event) + pevent->len;
- pevent->name[pevent->len] = '\0';
- if (strncmp(pevent->name, "event", 5)) {
+ std::string event_name(pevent->name, pevent->len);
+ if (!android::base::StartsWith(event_name, "event")) {
continue;
}
- android::base::unique_fd dfd(openat(dirfd(dir.get()), pevent->name, O_RDONLY));
+ android::base::unique_fd dfd(openat(dirfd(dir.get()), event_name.c_str(), O_RDONLY));
if (dfd == -1) {
break;
}