summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2021-10-08 21:05:31 +0200
committerChristopher Ferris <cferris@google.com>2021-10-08 21:08:33 +0200
commitce87c786116557e89f9da95f550d6816aeaca67e (patch)
treea36b487ec355b1c1383bd0c06b3a042032c3c7e2
parentMerge "Warn on `repo upload` if you're not uploading to AOSP master." am: 026eb31f80 am: fa27392f8a am: 361f8f4118 am: fc87149c4d am: 391de784d3 (diff)
downloadandroid_bootable_recovery-ce87c786116557e89f9da95f550d6816aeaca67e.tar
android_bootable_recovery-ce87c786116557e89f9da95f550d6816aeaca67e.tar.gz
android_bootable_recovery-ce87c786116557e89f9da95f550d6816aeaca67e.tar.bz2
android_bootable_recovery-ce87c786116557e89f9da95f550d6816aeaca67e.tar.lz
android_bootable_recovery-ce87c786116557e89f9da95f550d6816aeaca67e.tar.xz
android_bootable_recovery-ce87c786116557e89f9da95f550d6816aeaca67e.tar.zst
android_bootable_recovery-ce87c786116557e89f9da95f550d6816aeaca67e.zip
-rw-r--r--minui/events.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/minui/events.cpp b/minui/events.cpp
index 87f811225..863ac7474 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;
}