• step-'s avatar
    Fix --list prints empty cell as "(null)" · 6172f375
    step- authored
    To illustrate the issue before and after this fix:
    
        # /usr/bin/yad --list --print-all --column=A a '' c
        a|
        (null)|
        c|
        # ./src/yad --list --print-all --column=A a '' c
        a|
        |
        c|
    
    The empty string '' in the second row results in a NULL C pointer,
    which g_printf prints as "(null)". The fix consists of passing the
    empty string "" to g_printf when the pointer is NULL.
    6172f375
Name
Last commit
Last update
data Loading commit data...
po Loading commit data...
src Loading commit data...
.gitignore Loading commit data...
AUTHORS Loading commit data...
COPYING Loading commit data...
ChangeLog.old Loading commit data...
Makefile.am Loading commit data...
NEWS Loading commit data...
README.md Loading commit data...
THANKS Loading commit data...
TODO Loading commit data...
acinclude.m4 Loading commit data...
configure.ac Loading commit data...