By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1586
Collapse All | Expand All

(-)kcmautostart/src/autostart.cpp.crash_on_exit (-1 / +4 lines)
Lines 102-108 Link Here
102
  if (bisDesktop) service = new KService( fileName.path() );
102
  if (bisDesktop) service = new KService( fileName.path() );
103
  }
103
  }
104
  ~desktop() {
104
  ~desktop() {
105
    delete service;
105
    if(service) {
106
      service = NULL;
107
      delete service;
108
    }
106
  }
109
  }
107
};
110
};
108
111

Return to bug 1586