commit | c389b04bc57bb39da0269e4b5a4d639c8251b99f | [log] [tgz] |
---|---|---|
author | Remi Tricot-Le Breton <rlebreton@haproxy.com> | Mon Jan 02 15:01:16 2023 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Mon Jan 02 15:21:57 2023 +0100 |
tree | 5ced62bf3dd1ad71d43b007ca3d1ac324176d685 | |
parent | c57fb3be75d0cd36919ce94d5ef1d13ee6b15f98 [diff] |
BUG/MINOR: ssl: Missing goto in error path in ocsp update code When converting an OCSP request's information into base64, the return value of a2base64 is checked but processing is not interrupted when it returns a negative value, which was caught by coverity. This patch fixes GitHub issue #1974. It does not need to be backported.