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 860
Collapse All | Expand All

(-)tdelibs/tdecore/klibloader.cpp (-2 / +2 lines)
Lines 308-314 Link Here
308
    d->unload_mode = KLibLoaderPrivate::UNKNOWN;
308
    d->unload_mode = KLibLoaderPrivate::UNKNOWN;
309
    if (getenv("KDE_NOUNLOAD") != 0)
309
    if (getenv("KDE_NOUNLOAD") != 0)
310
        d->unload_mode = KLibLoaderPrivate::DONT_UNLOAD;
310
        d->unload_mode = KLibLoaderPrivate::DONT_UNLOAD;
311
    else if (getenv("KDE_DOUNLOAD") != 0)
311
    else if (getenv("TDE_DOUNLOAD") != 0)
312
        d->unload_mode = KLibLoaderPrivate::UNLOAD;
312
        d->unload_mode = KLibLoaderPrivate::UNLOAD;
313
    d->loaded_stack.setAutoDelete( true );
313
    d->loaded_stack.setAutoDelete( true );
314
}
314
}
Lines 525-531 Link Here
525
  bool deleted_one = false;
525
  bool deleted_one = false;
526
  while ((wrap = d->loaded_stack.first())) {
526
  while ((wrap = d->loaded_stack.first())) {
527
    /* Let's first see, if we want to try to unload this lib.
527
    /* Let's first see, if we want to try to unload this lib.
528
       If the env. var KDE_DOUNLOAD is set, we try to unload every lib.
528
       If the env. var TDE_DOUNLOAD is set, we try to unload every lib.
529
       If not, we look at the lib itself, and unload it only, if it exports
529
       If not, we look at the lib itself, and unload it only, if it exports
530
       the symbol __kde_do_unload. */
530
       the symbol __kde_do_unload. */
531
    if (d->unload_mode != KLibLoaderPrivate::UNLOAD
531
    if (d->unload_mode != KLibLoaderPrivate::UNLOAD

Return to bug 860