xditview: Changes to 'master'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Jan 23 23:35:35 UTC 2023


 .git-blame-ignore-revs |   16 ++++++++
 .gitlab-ci.yml         |   18 ++++++---
 Dvi.c                  |   46 +++++++++++------------
 DviChar.c              |   15 +++----
 Makefile.am            |    4 +-
 XFontName.c            |   18 +++++----
 XFontName.h            |    2 -
 configure.ac           |   18 +++++++++
 draw.c                 |   55 +++++++++++++---------------
 font.c                 |   32 ++++++++--------
 lex.c                  |   10 +++--
 page.c                 |   12 ++++--
 parse.c                |   95 +++++++++++++++++++++++++++++--------------------
 xditview.c             |   29 +++++++++-----
 14 files changed, 223 insertions(+), 147 deletions(-)

New commits:
commit 543f75af78446d6456fab89233ae1ab8eaf4c223
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Tue Jan 17 15:45:51 2023 -0800

    Add .git-blame-ignore-revs to hide whitespace commits from git blame
    
    To use this in your local repo clone, you will need to either run
    `git blame --ignore-revs-file .git-blame-ignore-revs`
    or set it permanently with
    `git config blame.ignoreRevsFile .git-blame-ignore-revs`
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>

commit 591e62a56ba2ab90ad159ae89406b9790bd96a11
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Sun Jan 15 11:12:10 2023 -0800

    GetLine: resolve -Wmaybe-uninitialized warning
    
    lex.c: In function ‘GetLine’:
    lex.c:38:8: warning: ‘c’ may be used uninitialized [-Wmaybe-uninitialized]
       38 |     if (c == '\n')
          |        ^
    lex.c:29:16: note: ‘c’ was declared here
       29 |     int i = 0, c;
          |                ^
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>

commit 95c3038f4a7e03c28ec6b209ec111cb2e3444646
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Sun Jan 15 11:00:08 2023 -0800

    Add CWARNFLAGS to AM_CFLAGS
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>

commit f536e9d910088d689ff010259f413d0abea915e5
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Sat Jan 14 18:06:58 2023 -0800

    Mark more char * as const
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>

commit 982c9d064fc05740374ae6fed02045527adb7d6a
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Sat Jan 14 17:58:03 2023 -0800

    configure: Add --with-xft and --without-xft flags to control USE_XFT
    
    USE_XFT ifdefs have been in since the import from XFree86, but
    never enabled by the autoconf build, oops!
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>

commit df1c5c7755441c32e26eec37d1b3d0fa0dbeceb3
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Sat Jan 14 16:44:17 2023 -0800

    Initialize more variables in their declarations
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>

commit 282857a907624ce29566b50b60687273dcd56f42
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Sat Jan 14 16:14:57 2023 -0800

    More variable scope reductions as recommended by cppcheck
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>

commit c623f10e9acc9033b2df436126799424eb5830b8
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Sat Jan 14 16:19:00 2023 -0800

    Add bounds check to getstr()
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>

commit 0ca4db4996abd5e6161567575fe318663d8dd117
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Sat Jan 14 12:42:33 2023 -0800

    Replace strcpy() calls with strncpy() or memcpy()
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>

commit 42e0ce4adc008430e32c54a5374b7744c2c2cfe4
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Sat Jan 14 12:28:30 2023 -0800

    lex.c: increment length counters when adding to buffer
    
    Simple test case:
    % python -c 'print("A"*60000)' > buf
    % xditview buf
    
    Reported-by: constantine110 at protonmail.com
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>



More information about the xorg-commit mailing list