|
|
| version 1.11, 2004/03/08 13:31:57 | version 1.12, 2004/03/08 15:13:56 |
|---|---|
| Line 1673 acd_send_cue(struct acd_softc *cdp, stru | Line 1673 acd_send_cue(struct acd_softc *cdp, stru |
| static int | static int |
| acd_report_key(struct acd_softc *cdp, struct dvd_authinfo *ai) | acd_report_key(struct acd_softc *cdp, struct dvd_authinfo *ai) |
| { | { |
| struct dvd_miscauth *d; | struct dvd_miscauth *d = NULL; |
| u_int32_t lba = 0; | u_int32_t lba = 0; |
| int16_t length; | int16_t length; |
| int8_t ccb[16]; | int8_t ccb[16]; |
| Line 1763 acd_report_key(struct acd_softc *cdp, st | Line 1763 acd_report_key(struct acd_softc *cdp, st |
| default: | default: |
| error = EINVAL; | error = EINVAL; |
| } | } |
| if (length) | free(d, M_ACD); |
| free(d, M_ACD); | |
| return error; | return error; |
| } | } |