Merge pull request #1 from jgriebler/master
Fix segfault in startup notification
This commit is contained in:
commit
cafedc3ea4
@ -5,7 +5,7 @@ MANPREFIX = ${PREFIX}/share/man
|
|||||||
# In dist tarballs, the version is stored in the VERSION files.
|
# In dist tarballs, the version is stored in the VERSION files.
|
||||||
VERSION := '$(shell [ -f VERSION ] && cat VERSION)'
|
VERSION := '$(shell [ -f VERSION ] && cat VERSION)'
|
||||||
ifeq ('',$(VERSION))
|
ifeq ('',$(VERSION))
|
||||||
VERSION := $(shell git describe)
|
VERSION := $(shell git describe --tags)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Xinerama, comment if you don't want it
|
# Xinerama, comment if you don't want it
|
||||||
|
1
dunst.c
1
dunst.c
@ -331,6 +331,7 @@ int main(int argc, char *argv[])
|
|||||||
n->plain_text = true;
|
n->plain_text = true;
|
||||||
n->urgency = LOW;
|
n->urgency = LOW;
|
||||||
n->icon = NULL;
|
n->icon = NULL;
|
||||||
|
n->raw_icon = NULL;
|
||||||
n->category = NULL;
|
n->category = NULL;
|
||||||
n->msg = NULL;
|
n->msg = NULL;
|
||||||
n->dbus_client = NULL;
|
n->dbus_client = NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user