1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

dtfile/IconWindow: CID 88242,88702,89030

This commit is contained in:
Jon Trulson 2018-04-11 13:53:39 -06:00
parent 19d824c2cc
commit 32e8827cbc

View file

@ -296,7 +296,7 @@ FileWindowInputCallback(
FileViewData * fileViewData = NULL;
Arg args[10];
DesktopRec * desktopRec;
KeySym keysym;
KeySym keysym = 0;
Modifiers modif;
int offset;
Boolean found;
@ -624,8 +624,8 @@ FileWindowInputCallback(
{
case osfXK_Delete:
{
DtActionArg * action_args;
int arg_count;
DtActionArg * action_args = NULL;
int arg_count = 0;
if( desktopRec == NULL
&& file_mgr_rec != NULL )
@ -669,7 +669,8 @@ FileWindowInputCallback(
action_args, arg_count, NULL, NULL,
trash_dir, True, NULL, NULL );
}
_DtFreeActionArgs( action_args, arg_count );
if (action_args && arg_count)
_DtFreeActionArgs( action_args, arg_count );
}
break;
case osfXK_Menu: