mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 05:28:33 +00:00
shada: Do not handle EINTR in open_file
It is already handled by libuv which is used by os_open.
This commit is contained in:
@@ -666,9 +666,6 @@ open_file_start:
|
|||||||
did_try_to_free = true;
|
did_try_to_free = true;
|
||||||
goto open_file_start;
|
goto open_file_start;
|
||||||
}
|
}
|
||||||
if (-fd == EINTR) {
|
|
||||||
goto open_file_start;
|
|
||||||
}
|
|
||||||
if (-fd != EEXIST) {
|
if (-fd != EEXIST) {
|
||||||
emsg3(_(SERR "System error while opening ShaDa file %s: %s"),
|
emsg3(_(SERR "System error while opening ShaDa file %s: %s"),
|
||||||
fname, os_strerror(fd));
|
fname, os_strerror(fd));
|
||||||
|
Reference in New Issue
Block a user