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

Diff for /src/usr.bin/tmux/tmux.c between version 1.192 and 1.193

version 1.192, 2020/01/28 11:31:31 version 1.193, 2020/03/12 09:26:34
Line 379 
Line 379 
                         path[strcspn(path, ",")] = '\0';                          path[strcspn(path, ",")] = '\0';
                 }                  }
         }          }
         if (path == NULL && (path = make_label(label, &cause)) == NULL) {          if (path == NULL) {
                 if (cause != NULL) {                  if ((path = make_label(label, &cause)) == NULL) {
                         fprintf(stderr, "%s\n", cause);                          if (cause != NULL) {
                         free(cause);                                  fprintf(stderr, "%s\n", cause);
                                   free(cause);
                           }
                           exit(1);
                 }                  }
                 exit(1);                  flags |= CLIENT_DEFAULTSOCKET;
         }          }
         socket_path = path;          socket_path = path;
         free(label);          free(label);

Legend:
Removed from v.1.192  
changed lines
  Added in v.1.193