dtmail: fix warning: NULL used in arithmetic
NULL != NULL makes no sense, really...
This commit is contained in:
committed by
Jon Trulson
parent
e3564643ad
commit
22a0f8f497
@@ -279,7 +279,7 @@ ComposeFamily::appendSignature(SendMsgDialog * compose)
|
||||
compose->get_editor()->textEditor()->append_to_contents(fullpath);
|
||||
if (NULL != fullpath)
|
||||
free((void*) fullpath);
|
||||
if (NULL != NULL)
|
||||
if (NULL != value)
|
||||
free((void*) value);
|
||||
|
||||
compose->get_editor()->textEditor()->set_to_top();
|
||||
|
||||
Reference in New Issue
Block a user