mirror of
https://github.com/NixOS/nix
synced 2025-07-07 10:11:47 +02:00
Revert "libexpr: Fix prim_replaceStrings() to work on an empty source string"
This reverts commit 4ea9707591
.
It causes an infinite loop in Nixpkgs evaluation,
e.g. "nix-instantiate -A hello" hung.
PR #1886.
This commit is contained in:
parent
a6c497f526
commit
e2d71bd186
3 changed files with 4 additions and 11 deletions
|
@ -1 +1 @@
|
|||
[ "faabar" "fbar" "fubar" "faboor" "fubar" "XaXbXcX" "X" ]
|
||||
[ "faabar" "fbar" "fubar" "faboor" "fubar" ]
|
||||
|
|
|
@ -5,6 +5,4 @@ with builtins;
|
|||
(replaceStrings ["oo"] ["u"] "foobar")
|
||||
(replaceStrings ["oo" "a"] ["a" "oo"] "foobar")
|
||||
(replaceStrings ["oo" "oo"] ["u" "i"] "foobar")
|
||||
(replaceStrings [""] ["X"] "abc")
|
||||
(replaceStrings [""] ["X"] "")
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue