Commit 79bc3418 authored by Pauli's avatar Pauli
Browse files

Correctly zero the DISPLAY_COLUMNS structure.

parent 80de1742
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -715,8 +715,9 @@ static void list_type(FUNC_TYPE ft, int one)
{
    FUNCTION *fp;
    int i = 0;
    DISPLAY_COLUMNS dc = {0};
    DISPLAY_COLUMNS dc;

    memset(&dc, 0, sizeof(dc));
    if (!one)
        calculate_columns(&dc);