filter: Fix crash for '**' pattern

This commit is contained in:
Michael Eischer
2021-05-14 22:14:05 +02:00
parent 6d8ceefd67
commit 55bea6e7a6
3 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
Bugfix: Fix crash of `backup --exclude='**'`
The exclude filter '**', which excludes all files, caused restic to crash. This
has been fixed.
https://github.com/restic/restic/issues/3380
https://github.com/restic/restic/pull/3393