Minor change.

This commit is contained in:
Florian Pose 2012-09-19 22:49:38 +02:00
parent 785660d96e
commit 8adc064f69
1 changed files with 2 additions and 1 deletions

View File

@ -49,8 +49,9 @@
void ec_voe_handler_clear(ec_voe_handler_t *voe)
{
if (voe->data)
if (voe->data) {
free(voe->data);
}
}
/*****************************************************************************/