init: fix BuildTriggersString for empty string

behavior is undefined if pop_back() on empty std::string

Test: grep init log
Bug: 32712851
Bug: 32838381
Change-Id: I5bfac2fb275036abd0158b78df14019d2e82716d
diff --git a/init/action.cpp b/init/action.cpp
index a12f225..e9b2a0d 100644
--- a/init/action.cpp
+++ b/init/action.cpp
@@ -249,7 +249,9 @@
         result += event_trigger_;
         result += ' ';
     }
-    result.pop_back();
+    if (!result.empty()) {
+        result.pop_back();
+    }
     return result;
 }