* hb_attachment_close ********************************************************************** * *********************************************************************/
| 6606 | * |
| 6607 | *********************************************************************/ |
| 6608 | void hb_attachment_close( hb_attachment_t **attachment ) |
| 6609 | { |
| 6610 | if ( attachment && *attachment ) |
| 6611 | { |
| 6612 | free((*attachment)->data); |
| 6613 | free((*attachment)->name); |
| 6614 | free(*attachment); |
| 6615 | *attachment = NULL; |
| 6616 | } |
| 6617 | } |
| 6618 | |
| 6619 | /********************************************************************** |
| 6620 | * hb_yuv2rgb |
no outgoing calls
no test coverage detected