]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Correct return values for tls_construct_stoc_next_proto_neg
authorMatt Caswell <matt@openssl.org>
Fri, 21 Jun 2024 09:41:55 +0000 (10:41 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 27 Jun 2024 09:37:54 +0000 (10:37 +0100)
Return EXT_RETURN_NOT_SENT in the event that we don't send the extension,
rather than EXT_RETURN_SENT. This actually makes no difference at all to
the current control flow since this return value is ignored in this case
anyway. But lets make it correct anyway.

Follow on from CVE-2024-5535

Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24718)

ssl/statem/extensions_srvr.c

index 4ea085e1a1ef13d7507a7c8f7447ed950aa8a844..2da880450f045178323c8bebccca22e75ac2f6bb 100644 (file)
@@ -1476,9 +1476,10 @@ EXT_RETURN tls_construct_stoc_next_proto_neg(SSL *s, WPACKET *pkt,
             return EXT_RETURN_FAIL;
         }
         s->s3.npn_seen = 1;
+        return EXT_RETURN_SENT;
     }
 
-    return EXT_RETURN_SENT;
+    return EXT_RETURN_NOT_SENT;
 }
 #endif