[BACK]Return to spawn.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/spawn.c between version 1.21 and 1.22

version 1.21, 2020/04/13 20:51:57 version 1.22, 2020/04/23 05:48:42
Line 366 
Line 366 
                         window_remove_pane(w, new_wp);                          window_remove_pane(w, new_wp);
                 }                  }
                 sigprocmask(SIG_SETMASK, &oldset, NULL);                  sigprocmask(SIG_SETMASK, &oldset, NULL);
                   environ_free(child);
                 return (NULL);                  return (NULL);
         }          }
   
Line 442 
Line 443 
   
         sigprocmask(SIG_SETMASK, &oldset, NULL);          sigprocmask(SIG_SETMASK, &oldset, NULL);
         window_pane_set_event(new_wp);          window_pane_set_event(new_wp);
   
           environ_free(child);
   
         if (sc->flags & SPAWN_RESPAWN)          if (sc->flags & SPAWN_RESPAWN)
                 return (new_wp);                  return (new_wp);

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22