summary refs log blame commit diff
path: root/pkgs/development/libraries/libunique/gcc7-bug.patch
blob: 2b0587510bc0d994fbbef03c5976abfc6a5c29f1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                           
gcc-7 newly detects this class of bugs.
In this particular case it's clear that the inention was
to detect if the string is non-NULL *and* non-empty.


diff --git a/unique/uniqueapp.c b/unique/uniqueapp.c
index b40a86c..66a7226 100644
--- a/unique/uniqueapp.c
+++ b/unique/uniqueapp.c
@@ -176,7 +176,7 @@ set_startup_id (UniqueBackend *backend,
 {
   gchar *id;
 
-  if (startup_id && startup_id != '\0')
+  if (startup_id && *startup_id != '\0')
     id = g_strdup (startup_id);
   else
     {