#0 sk_addr_free (addr=0x2400000002fd) at unix/uxnet.c:477 472: #endif 473: } 474: 475: void sk_addr_free(SockAddr addr) 476: { 477: if (--addr->refcount > 0) 478: return; 479: #ifndef NO_IPV6 480: if (addr->ais != NULL) 481: freeaddrinfo(addr->ais); 482: #else #1 net_select_result (fd=, event=) at unix/uxnet.c:1443 1438: 1439: /* 1440: * If we get here, we've managed to make a connection. 1441: */ 1442: if (s->addr) { 1443: sk_addr_free(s->addr); 1444: s->addr = NULL; 1445: } 1446: s->connected = s->writable = 1; 1447: uxsel_tell(s); 1448: } else { #2 0x0000562be0c34891 in select_result (fd=, fd@entry=13, event=event@entry=2) at unix/uxsel.c:123 118: * Apparently this can sometimes be NULL. Can't see how, but I 119: * assume it means I need to ignore the event since it's on an 120: * fd I've stopped being interested in. Sigh. 121: */ 122: if (fdstruct) 123: fdstruct->callback(fd, event); 124: } #3 0x0000562be0c1b74a in fd_input_func (source=, condition=, data=) at unix/gtkcomm.c:89 84: if (condition & G_IO_PRI) 85: select_result(sourcefd, 4); 86: if (condition & G_IO_IN) 87: select_result(sourcefd, 1); 88: if (condition & G_IO_OUT) 89: select_result(sourcefd, 2); 90: 91: return TRUE; 92: } 93: #else 94: void fd_input_func(gpointer data, gint sourcefd, GdkInputCondition condition) #4 0x00007fabcec470f5 in g_main_dispatch (context=0x562be2460130) at ../../../../glib/gmain.c:3177 [Error: gmain.c was not found in source tree] #5 g_main_context_dispatch (context=context@entry=0x562be2460130) at ../../../../glib/gmain.c:3830 [Error: gmain.c was not found in source tree] #6 0x00007fabcec474c0 in g_main_context_iterate (context=0x562be2460130, block=block@entry=1, dispatch=dispatch@entry=1, self=) at ../../../../glib/gmain.c:3903 [Error: gmain.c was not found in source tree] #7 0x00007fabcec477d2 in g_main_loop_run (loop=0x562be2c91680) at ../../../../glib/gmain.c:4099 [Error: gmain.c was not found in source tree] #8 0x00007fabd00222e5 in gtk_main () at ../../../../gtk/gtkmain.c:1323 #9 0x0000562be0bb73df in main (argc=, argv=) at unix/gtkmain.c:633 628: * in a global variable anyway, so that it'll be easy to find in a 629: * debugger. 630: */ 631: the_inst = new_session_window(conf, geometry_string); 632: 633: gtk_main(); 634: 635: return 0; 636: }