dtbuilder.c.src: fix empty-body warnings
This commit is contained in:
parent
2559a96ee8
commit
dddca18f9b
|
|
@ -692,11 +692,11 @@ output_handler(STRING msg)
|
|||
/*
|
||||
* Free help data strings
|
||||
*/
|
||||
if (help_data.help_text);
|
||||
if (help_data.help_text)
|
||||
XtFree(help_data.help_text);
|
||||
if (help_data.help_volume);
|
||||
if (help_data.help_volume)
|
||||
XtFree(help_data.help_volume);
|
||||
if (help_data.help_locationID);
|
||||
if (help_data.help_locationID)
|
||||
XtFree(help_data.help_locationID);
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in New Issue