[BACK]Return to cmd-confirm-before.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-confirm-before.c between version 1.53 and 1.54

version 1.53, 2023/04/28 06:12:27 version 1.54, 2024/04/15 08:19:55
Line 76 
Line 76 
   
         cdata = xcalloc(1, sizeof *cdata);          cdata = xcalloc(1, sizeof *cdata);
         cdata->cmdlist = args_make_commands_now(self, item, 0, 1);          cdata->cmdlist = args_make_commands_now(self, item, 0, 1);
         if (cdata->cmdlist == NULL)          if (cdata->cmdlist == NULL) {
                   free(cdata);
                 return (CMD_RETURN_ERROR);                  return (CMD_RETURN_ERROR);
           }
   
         if (wait)          if (wait)
                 cdata->item = item;                  cdata->item = item;

Legend:
Removed from v.1.53  
changed lines
  Added in v.1.54