/* * $Id$ * * This function provides a common pam_set_data() friendly version of free(). */#include"pam_modutil_private.h"#include<stdlib.h>voidpam_modutil_cleanup(pam_handle_t*pamhUNUSED,void*data,interror_statusUNUSED){if(data){/* junk it */(void)free(data);}}