Ticket #141: mythtv_0.18.1_fix.patch

File mythtv_0.18.1_fix.patch, 282 bytes (added by mindgrep@…, 19 years ago)

Bug fix in libmyth code

Line 
1#Change to fix tree traversal bug in libmyth
2#This change affects the play music screen in mythmusic
3#Vikas 7/19/2005
4Index: mythtv-0.18.1/libs/libmyth/uitypes.cpp
52723c2723
6<             for(int j = 0; j < bins - i; j++)
7---
8>             for(int j = 0; j < active_bin - i; j++)
9