Module Name: src Committed By: jmcneill Date: Sun Jan 11 14:19:09 UTC 2015
Modified Files: src/sys/dev/usb: if_urtwn.c Log Message: Pass the correct length to firmware_free. The code previously did len = firmware_get_size(..) and then used len as a counter while loading firmware. The result was that in the success path, len = 0. This commit introduces a new "fwlen" (const) to store the firmware size, and passes it to firmware_free instead of "len". To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 src/sys/dev/usb/if_urtwn.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.