diff options
| author | Amaury Pouly <pamaury@rockbox.org> | 2010-01-11 21:03:48 +0000 |
|---|---|---|
| committer | Amaury Pouly <pamaury@rockbox.org> | 2010-01-11 21:03:48 +0000 |
| commit | ca370f4b40309a932ee564ffe57ce77ac9c8831a (patch) | |
| tree | 1069ec9ee7ef310cc20413a513518a7df350b767 | |
| parent | 294b017cd1beb8b13a691982515e894eb4e2bf1c (diff) | |
| download | rockbox-ca370f4b40309a932ee564ffe57ce77ac9c8831a.zip rockbox-ca370f4b40309a932ee564ffe57ce77ac9c8831a.tar.gz rockbox-ca370f4b40309a932ee564ffe57ce77ac9c8831a.tar.bz2 rockbox-ca370f4b40309a932ee564ffe57ce77ac9c8831a.tar.xz | |
Fix a bug in usbserial that would allow to send messages on EP_CONTROL between usb init and endpoints allocation via logf.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24214 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/usbstack/usb_serial.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/firmware/usbstack/usb_serial.c b/firmware/usbstack/usb_serial.c index a780c5d..e715909 100644 --- a/firmware/usbstack/usb_serial.c +++ b/firmware/usbstack/usb_serial.c @@ -147,7 +147,6 @@ void usb_serial_init(void) buffer_start = 0; buffer_length = 0; buffer_transitlength = 0; - active = true; } void usb_serial_disconnect(void) |