Hi,
I recently compiled tmux 1.7 for Solaris and it's all fine other than the key
sequence 'C-b w' which causes a sigsegv:
Incurred fault #6, FLTBOUNDS %pc = 0xFF0320D0
siginfo: SIGSEGV SEGV_MAPERR addr=0x
Received signal #11, SIGSEGV [default]
siginfo: SEGSEGV SEGV_MAPERR
It's SPARC, libevent 2.0.5, gcc, had to modify lockf to use fcntl etc.
On 2 Feb 2013, at 10:48, Nicholas Marriott wrote:
> Is there a core or can you attach a debugger before doing this so we can
> get a backtrace?
>
>
>
> On Sat, Feb 02, 2013 at 10:03:39AM +
LL)
+ format_add(ft, "pane_tty", "%s", wp->tty);
}
void
On 2 Feb 2013, at 10:48, Nicholas Marriott wrote:
> Is there a core or can you attach a debugger before doing this so we can
> get a backtrace?
>
>
>
> On Sat, Feb 02, 2013 at 10:03:39AM +0
John,
What issues have you had - I might be able to help?
Cheers,
Adrian
On 3 Feb 2013, at 15:44, Thomas Adam wrote:
> On Sun, Feb 03, 2013 at 03:40:57PM +0000, Adrian Haughton wrote:
>> It's SPARC, libevent 2.0.5, gcc, had to modify lockf to use fcntl etc.
>
> I real
(ft, "pane_current_path", "%s", cwd);
format_add(ft, "pane_pid", "%ld", (long) wp->pid);
-format_add(ft, "pane_tty", "%s", wp->tty);
+if (wp->tty != NULL)
+format_add(ft, "pane_tty", "%s", wp->tty);
}