Opened 18 years ago
Closed 18 years ago
#4845 closed defect (fixed)
useless assignment in src_simple()
| Reported by: | Owned by: | Isaac Richards | |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.22 |
| Component: | mythtv | Version: | 0.21-fixes |
| Severity: | low | Keywords: | |
| Cc: | Ticket locked: | no |
Description
src_simple in libs/libmythsamplerate/samplerate.c
Does this at the end of the call:
src_state = src_delete (src_state) ;
We don't need to make an assignment of whatever src_delete returns because it is always null.
Attachments (1)
Change History (3)
by , 18 years ago
| Attachment: | libs_libmythsamplerate_samplerate.c-remove-unnecessary-assignment.patch added |
|---|
comment:1 by , 18 years ago
| Milestone: | 0.21 → 0.22 |
|---|
Note:
See TracTickets
for help on using tickets.

removes assignment from src_delete since it is unnecessary