]> git.notmuchmail.org Git - notmuch/blobdiff - debugger.c
emacs: Add new option notmuch-search-hide-excluded
[notmuch] / debugger.c
index 5cb38ac444e35d774152b64973790c4fd5ec7f4d..5f47a1d77d9f45f8adf4e16c9872b88b692c7e75 100644 (file)
@@ -32,14 +32,14 @@ bool
 debugger_is_active (void)
 {
     char buf[1024];
 debugger_is_active (void)
 {
     char buf[1024];
+    char buf2[1024];
 
     if (RUNNING_ON_VALGRIND)
        return true;
 
     sprintf (buf, "/proc/%d/exe", getppid ());
 
     if (RUNNING_ON_VALGRIND)
        return true;
 
     sprintf (buf, "/proc/%d/exe", getppid ());
-    if (readlink (buf, buf, sizeof (buf)) != -1 &&
-       strncmp (basename (buf), "gdb", 3) == 0)
-    {
+    if (readlink (buf, buf2, sizeof (buf2)) != -1 &&
+       strncmp (basename (buf2), "gdb", 3) == 0) {
        return true;
     }
 
        return true;
     }