http://bugs.winehq.com/show_bug.cgi?id=616
*** shadow/616 Sat May 25 14:05:50 2002 --- shadow/616.tmp.25531 Sat May 25 15:03:09 2002 *************** *** 121,123 **** --- 121,146 ---- *sigh* Sorry I should've check this before.
Does this imply a configuration error or a wine bug? + + ------- Additional Comments From Speeddymon@yahoo.com 2002-05-25 15:03 ------- + something i noticed in the patch, dont know if it has anything to do with the + problem, but where is the default case in this statement?! ;) + + + switch(kind) + + { + + case SEND_MESSAGE: + + if (!queue->msg_list[kind].first) change_queue_bits( queue, 0, + QS_SENDMESSAGE ); + + break; + + case POST_MESSAGE: + + if (!queue->msg_list[kind].first) change_queue_bits( queue, 0, + QS_POSTMESSAGE ); + + break; + + case COOKED_HW_MESSAGE: + + case RAW_HW_MESSAGE: + + clr_bit = get_hardware_msg_bit( msg ); + + for (other = queue->msg_list[kind].first; other; other = other->next) + + if (get_hardware_msg_bit( other ) == clr_bit) break; + + if (!other) change_queue_bits( queue, 0, clr_bit ); + + break; + + }