summaryrefslogtreecommitdiff
path: root/apt-pkg/algorithms.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2021-01-11 11:07:48 +0000
committerJulian Andres Klode <jak@debian.org>2021-01-11 11:07:48 +0000
commitab34ccb25f9e8b54fef14142457d00beb3723ab1 (patch)
tree2396781be02376963df042a06f07ae46f6652d0c /apt-pkg/algorithms.cc
parent8ecd0d2c572b0c36142f39a8691ace91ed90c8ca (diff)
parent229e73afa4d6e862262f898a7e58942c90939306 (diff)
Merge branch 'pu/misc-fixes-2-1-16' into 'master'
Misc fixes See merge request apt-team/apt!152
Diffstat (limited to 'apt-pkg/algorithms.cc')
-rw-r--r--apt-pkg/algorithms.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc
index 260a8ac41..4c267c91c 100644
--- a/apt-pkg/algorithms.cc
+++ b/apt-pkg/algorithms.cc
@@ -1606,7 +1606,12 @@ std::string GetProtectedKernelsRegex(pkgCache *cache, bool ReturnRemove)
}
}
- auto re = ss.str().substr(1);
+ auto re_with_leading_or = ss.str();
+
+ if (re_with_leading_or.empty())
+ return "";
+
+ auto re = re_with_leading_or.substr(1);
if (Debug)
std::clog << "Kernel protection regex: " << re << "\n";