Hi, On 16 August 2012 15:06, Michael Scholz <m...@fth-devel.net> wrote: > After updating tmux-1.7 to revision 2860 join-pane doesn't work any > longer. One can reproduce it (without any ~/.tmux.conf file) with > > % tmux-1.7 new \; neww -d \; joinp -s 1 -t 0 > [lost server] > > and tmux-1.7 dumps core.
Now that is interesting because this area of tmux hasn't changed in a while. Hmm. Does the following resolve the issue for you? diff --git a/trunk/names.c b/trunk/names.c index 11baae3..44b96ab 100644 --- a/trunk/names.c +++ b/trunk/names.c @@ -55,6 +55,10 @@ window_name_callback(unused int fd, unused short events, void *data) event_del(&w->name_timer); return; } + + if (w->active == NULL) + return; + queue_window_name(w); if (w->active->screen != &w->active->base) -- Thomas Adam ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ tmux-users mailing list tmux-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/tmux-users