From a5dae62e85d9ff9db6c4088d64559d7bac713486 Mon Sep 17 00:00:00 2001 From: Kane York Date: Thu, 6 Aug 2020 01:28:00 -0700 Subject: fix(3p/nix): Use SkipEmpty in all calls to absl::StrSplit The behavior to return a list containing a single empty string when provided an empty string is a behavior that absl inherited from legacy code. However, the behavior expected by legacy code in Nix is the behavior provided by the SkipEmpty option. Switch all calls to use SkipEmpty, except for the call already using SkipWhitespace. See also commit 26a59482d2427f640893517f1b24dd650a5bd5da, with the partly-prophetic message: "there may be other places we need to fix this as well." Change-Id: I6e94856a12cfb1b7e4a3b4e221769ed446648861 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1687 Tested-by: BuildkiteCI Reviewed-by: glittershark --- third_party/nix/src/libstore/parsed-derivations.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'third_party/nix/src/libstore/parsed-derivations.cc') diff --git a/third_party/nix/src/libstore/parsed-derivations.cc b/third_party/nix/src/libstore/parsed-derivations.cc index 9ee93b6a6d6e..6989a21fee5c 100644 --- a/third_party/nix/src/libstore/parsed-derivations.cc +++ b/third_party/nix/src/libstore/parsed-derivations.cc @@ -88,7 +88,8 @@ std::optional ParsedDerivation::getStringsAttr( if (i == drv.env.end()) { return {}; } - return absl::StrSplit(i->second, absl::ByAnyChar(" \t\n\r")); + return absl::StrSplit(i->second, absl::ByAnyChar(" \t\n\r"), + absl::SkipEmpty()); } } -- cgit 1.4.1