Commit 64b5b5bd authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix the buffer sizing in the fatalerrtest

parent 4749aba5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ static int test_fatalerr(void)
    }

    /* SSL_read()/SSL_write should fail because of a previous fatal error */
    if ((len = SSL_read(sssl, buf, sizeof(buf - 1))) > 0) {
    if ((len = SSL_read(sssl, buf, sizeof(buf) - 1)) > 0) {
        buf[len] = '\0';
        printf("Unexpected success reading data: %s\n", buf);
        goto err;