]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Fix error reporting pointer parameters in winsecur.c.
authorSimon Tatham <anakin@pobox.com>
Wed, 1 Feb 2017 20:42:21 +0000 (20:42 +0000)
committerSimon Tatham <anakin@pobox.com>
Wed, 1 Feb 2017 20:42:21 +0000 (20:42 +0000)
Several functions were passing a 'char *error' and assigning error
messages directly into 'error', where they should have been passing
'char **error' and assigning error messages into '*error' if the error
message is to be returned to the caller. This would have led to
incomplete error messages.


No differences found