aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-05-06 19:28:36 -0400
committerGitHub <noreply@github.com>2021-05-06 19:28:36 -0400
commit21035cff9f1d279e3cb5ec866916bfa231cdbaa2 (patch)
tree22f29c01fa089b7d239ffe9b5bc86fba0285834e /src/nvim/os
parenta3e914b64c621605f91d7284f3050f7fed57a856 (diff)
parentefed75f91638bc52a2a551683c2f7a1da4a1e3ea (diff)
downloadrneovim-21035cff9f1d279e3cb5ec866916bfa231cdbaa2.tar.gz
rneovim-21035cff9f1d279e3cb5ec866916bfa231cdbaa2.tar.bz2
rneovim-21035cff9f1d279e3cb5ec866916bfa231cdbaa2.zip
Merge pull request #14500 from jamessan/coverity-fixes
Various Coverity fixes
Diffstat (limited to 'src/nvim/os')
-rw-r--r--src/nvim/os/fs.c2
-rw-r--r--src/nvim/os/pty_process_unix.h1
-rw-r--r--src/nvim/os/pty_process_win.h1
3 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c
index a3bef3389c..d0fa74a77f 100644
--- a/src/nvim/os/fs.c
+++ b/src/nvim/os/fs.c
@@ -471,8 +471,6 @@ FILE *os_fopen(const char *path, const char *flags)
abort();
}
}
- // Per open(2) manpage.
- assert((iflags|O_RDONLY) || (iflags|O_WRONLY) || (iflags|O_RDWR));
// Per fopen(3) manpage: default to 0666, it will be umask-adjusted.
int fd = os_open(path, iflags, 0666);
if (fd < 0) {
diff --git a/src/nvim/os/pty_process_unix.h b/src/nvim/os/pty_process_unix.h
index 8c822eafad..765490b92b 100644
--- a/src/nvim/os/pty_process_unix.h
+++ b/src/nvim/os/pty_process_unix.h
@@ -7,7 +7,6 @@
typedef struct pty_process {
Process process;
- char *term_name;
uint16_t width, height;
struct winsize winsize;
int tty_fd;
diff --git a/src/nvim/os/pty_process_win.h b/src/nvim/os/pty_process_win.h
index f8ec79a3d6..3f6cc58e3e 100644
--- a/src/nvim/os/pty_process_win.h
+++ b/src/nvim/os/pty_process_win.h
@@ -15,7 +15,6 @@ typedef enum {
typedef struct pty_process {
Process process;
- char *term_name;
uint16_t width, height;
union {
winpty_t *winpty;