forked from lix-project/lix
Merge "oops: fix warning about catching polymorphic exception" into main
This commit is contained in:
commit
0800a81a95
|
@ -479,7 +479,7 @@ struct curlFileTransfer : public FileTransfer
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
stopWorkerThread();
|
stopWorkerThread();
|
||||||
} catch (nix::Error e) {
|
} catch (nix::Error & e) {
|
||||||
// This can only fail if a socket to our own process cannot be
|
// This can only fail if a socket to our own process cannot be
|
||||||
// written to, so it is always a bug in the program if it fails.
|
// written to, so it is always a bug in the program if it fails.
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue