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

(-)kmplayer-3.5.13.1/src/xineplayer.cpp.ORI (+4 lines)
Lines 528-534 Link Here
528
    xine_event_create_listener_thread (event_queue, event_listener, NULL);
528
    xine_event_create_listener_thread (event_queue, event_listener, NULL);
529
    if (mrl == "cdda:/") {
529
    if (mrl == "cdda:/") {
530
        int nr;
530
        int nr;
531
#if XINE_MAJOR_VERSION > 1 || ( XINE_MAJOR_VERSION == 1 && XINE_MINOR_VERSION >= 2 )
532
        const char * const* mrls = xine_get_autoplay_mrls (xine, "CD", &nr);
533
#else
531
        char ** mrls = xine_get_autoplay_mrls (xine, "CD", &nr);
534
        char ** mrls = xine_get_autoplay_mrls (xine, "CD", &nr);
535
#endif
532
        running = 1;
536
        running = 1;
533
        for (int i = 0; i < nr; i++) {
537
        for (int i = 0; i < nr; i++) {
534
            TQString m (mrls[i]);
538
            TQString m (mrls[i]);

Return to bug 1262