Ticket #1920: hdhr_control.diff
File hdhr_control.diff, 539 bytes (added by , 19 years ago) |
---|
-
libs/libmythtv/hdhomerun/hdhomerun_control.c
167 167 168 168 memcpy(result->buffer, cs->rx_buffer, length); 169 169 if (rx_length > length) { 170 memcpy(cs->rx_buffer, cs->rx_buffer , rx_length - length);170 memcpy(cs->rx_buffer, cs->rx_buffer + length, rx_length - length); 171 171 } 172 172 cs->rx_pos = cs->rx_buffer + (rx_length - length); 173 173