Commit 8fce04ee authored by Pauli's avatar Pauli Committed by Richard Levitte
Browse files

Increase the size of the stack buffer to prevent an overflow.

parent 4483e234
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -238,7 +238,7 @@ static int print_bin(BIO *fp, const char *name, const unsigned char *buf,
                     size_t len, int off)
{
    size_t i;
    char str[128];
    char str[128 + 1 + 4];

    if (buf == NULL)
        return 1;