]> asedeno.scripts.mit.edu Git - PuTTY.git/commit
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)
commitf6c1c8819b5d90a97124b62ee07b0e06d6bbb6c3
treefb1f2aaa492e3ea5534911afcc7487c935f6b6c2
parent9c3700a6d3d037bd823a65f5837264605891b2ea
Fix error reporting pointer parameters in winsecur.c.

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.
windows/winsecur.c