diff options
Diffstat (limited to 'libssh/options.c')
-rw-r--r-- | libssh/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/options.c b/libssh/options.c index 81e4bd8a..e9a25868 100644 --- a/libssh/options.c +++ b/libssh/options.c @@ -53,7 +53,7 @@ SSH_OPTIONS *ssh_options_new(void) { SSH_OPTIONS *option; option = malloc(sizeof(SSH_OPTIONS)); - if (options == NULL) { + if (option == NULL) { return NULL; } |