*<type 'exceptions.IOError'>* Python 2.7.17: /usr/bin/python
Sun Feb 8 18:12:35 2026

A problem occurred in a Python script. Here is the sequence of function
calls leading up to the error, in the order they occurred.
 /usr/lib/python2.7/dist-packages/flup/server/fcgi_base.py in
*run*(self=<flup.server.fcgi_base.Request
object>)
    556
         """Runs the handler, flushes the streams, and ends the request."""
    557         try:
=>  558             protocolStatus, appStatus = self.server.handler(self)
    559         except:
    560             traceback.print_exc(file=self.stderr)
protocolStatus *undefined*, appStatus *undefined*, *self* =
<flup.server.fcgi_base.Request object>, self.*server* =
<flup.server.fcgi.WSGIServer object>, self.server.*handler* = <bound method
WSGIServer.handler of <flup.server.fcgi.WSGIServer object>>
 /usr/lib/python2.7/dist-packages/flup/server/fcgi_base.py in
*handler*(self=<flup.server.fcgi.WSGIServer
object>, req=<flup.server.fcgi_base.Request object>)
   1116         try:
   1117             try:
=> 1118                 result = self.application(environ, start_response)
   1119                 try:
   1120                     for data in result:
*result* = None, *self* = <flup.server.fcgi.WSGIServer object>, self.
*application* = <function script_name_fixer>, *environ* =
{'CONTENT_LENGTH': '0', 'CONTEXT_DOCUMENT_ROOT': '/srv/
help.ubuntu.com/moin.fcgi/', 'CONTEXT_PREFIX': '/community/',
'DOCUMENT_ROOT': '/srv/help.ubuntu.com/www/', 'GATEWAY_INTERFACE':
'CGI/1.1', 'HTTPS': 'on', 'HTTP_ACCEPT':
'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'HTTP_ACCEPT_ENCODING': 'gzip, deflate, br, zstd', 'HTTP_ACCEPT_LANGUAGE':
'en-US,en;q=0.5', 'HTTP_CONNECTION': 'close', ...}, *start_response* =
<function start_response>
 /srv/help.ubuntu.com/moin.fcgi in *script_name_fixer*(env={'CONTENT_LENGTH':
'0', 'CONTEXT_DOCUMENT_ROOT': '/srv/help.ubuntu.com/moin.fcgi/',
'CONTEXT_PREFIX': '/community/', 'DOCUMENT_ROOT': '/srv/help.ubuntu.com/www/',
'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTPS': 'on', 'HTTP_ACCEPT':
'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'HTTP_ACCEPT_ENCODING': 'gzip, deflate, br, zstd', 'HTTP_ACCEPT_LANGUAGE':
'en-US,en;q=0.5', 'HTTP_CONNECTION': 'close', ...}, start=<function
start_response>)
     64     def script_name_fixer(env, start):
     65         env['SCRIPT_NAME'] = fix_script_name
=>   66         return app(env, start)
     67     application = script_name_fixer
     68
*global* *app* = <werkzeug.wsgi.SharedDataMiddleware object>, *env* =
{'CONTENT_LENGTH': '0', 'CONTEXT_DOCUMENT_ROOT': '/srv/
help.ubuntu.com/moin.fcgi/', 'CONTEXT_PREFIX': '/community/',
'DOCUMENT_ROOT': '/srv/help.ubuntu.com/www/', 'GATEWAY_INTERFACE':
'CGI/1.1', 'HTTPS': 'on', 'HTTP_ACCEPT':
'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'HTTP_ACCEPT_ENCODING': 'gzip, deflate, br, zstd', 'HTTP_ACCEPT_LANGUAGE':
'en-US,en;q=0.5', 'HTTP_CONNECTION': 'close', ...}, *start* = <function
start_response>
 /usr/lib/python2.7/dist-packages/werkzeug/wsgi.py in
*__call__*(self=<werkzeug.wsgi.SharedDataMiddleware
object>, environ={'CONTENT_LENGTH': '0', 'CONTEXT_DOCUMENT_ROOT': '/srv/
help.ubuntu.com/moin.fcgi/', 'CONTEXT_PREFIX': '/community/',
'DOCUMENT_ROOT': '/srv/help.ubuntu.com/www/', 'GATEWAY_INTERFACE':
'CGI/1.1', 'HTTPS': 'on', 'HTTP_ACCEPT':
'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'HTTP_ACCEPT_ENCODING': 'gzip, deflate, br, zstd', 'HTTP_ACCEPT_LANGUAGE':
'en-US,en;q=0.5', 'HTTP_CONNECTION': 'close', ...},
start_response=<function start_response>)
    764                     break
    765
         if file_loader is None or not self.is_allowed(real_filename):
=>  766             return self.app(environ, start_response)
    767
    768         guessed_type = mimetypes.guess_type(real_filename)
*self* = <werkzeug.wsgi.SharedDataMiddleware object>, self.*app* =
<MoinMoin.wsgiapp.Application object>, *environ* = {'CONTENT_LENGTH': '0',
'CONTEXT_DOCUMENT_ROOT': '/srv/help.ubuntu.com/moin.fcgi/',
'CONTEXT_PREFIX': '/community/', 'DOCUMENT_ROOT': '/srv/help.ubuntu.com/www/',
'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTPS': 'on', 'HTTP_ACCEPT':
'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'HTTP_ACCEPT_ENCODING': 'gzip, deflate, br, zstd', 'HTTP_ACCEPT_LANGUAGE':
'en-US,en;q=0.5', 'HTTP_CONNECTION': 'close', ...}, *start_response* =
<function start_response>
 /usr/lib/python2.7/dist-packages/MoinMoin/wsgiapp.py in
*__call__*(self=<MoinMoin.wsgiapp.Application
object>, environ={'CONTENT_LENGTH': '0', 'CONTEXT_DOCUMENT_ROOT': '/srv/
help.ubuntu.com/moin.fcgi/', 'CONTEXT_PREFIX': '/community/',
'DOCUMENT_ROOT': '/srv/help.ubuntu.com/www/', 'GATEWAY_INTERFACE':
'CGI/1.1', 'HTTPS': 'on', 'HTTP_ACCEPT':
'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'HTTP_ACCEPT_ENCODING': 'gzip, deflate, br, zstd', 'HTTP_ACCEPT_LANGUAGE':
'en-US,en;q=0.5', 'HTTP_CONNECTION': 'close', ...},
start_response=<function start_response>)
    262             context = init(request)
    263             try:
=>  264                 response = run(context)
    265             finally:
    266                 context.clock.stop('total')
response *undefined*, *global* *run* = <function run>, *context* =
<AllContext ['AllContext']>
 /usr/lib/python2.7/dist-packages/MoinMoin/wsgiapp.py in
*run*(context=<AllContext
['AllContext']>)
     87                 response = xmlrpc.xmlrpc2(XMLRPCContext(request))
     88             else:
=>   89                 response = dispatch(request, context, action_name)
     90
             context.cfg.session_service.finalize(context, context.session)
     91             return response
response *undefined*, *global* *dispatch* = <function dispatch>, *request* =
<AppRequest 0 bytes [200 OK]>, *context* = <AllContext ['AllContext']>,
*action_name* = 'show'
 /usr/lib/python2.7/dist-packages/MoinMoin/wsgiapp.py in
*dispatch*(request=<AppRequest
0 bytes [200 OK]>, context=<AllContext ['AllContext']>, action_name='show')
    135     # 2. handle action
    136     else:
=>  137         response = handle_action(context, pagename, action_name)
    138     if isinstance(response, Context):
    139         response = response.request
response *undefined*, *global* *handle_action* = <function handle_action>,
*context* = <AllContext ['AllContext']>, *pagename* = u'SSO/FAQs',
*action_name* = 'show'
 /usr/lib/python2.7/dist-packages/MoinMoin/wsgiapp.py in
*handle_action*(context=<AllContext
['AllContext']>, pagename=u'SSO/FAQs', action_name='show')
    201             context.page.send_page()
    202         else:
=>  203             handler(context.page.page_name, context)
    204
    205     return context
*handler* = <function do_show>, *context* = <AllContext ['AllContext']>,
context.*page* = <MoinMoin.Page.Page object>, context.page.*page_name* =
u'SSO/FAQs'
 /usr/lib/python2.7/dist-packages/MoinMoin/action/__init__.py in
*do_show*(pagename=u'SSO/FAQs',
request=<AllContext ['AllContext']>, content_only=0, count_hit=1,
cacheable=1, print_mode=0, mimetype=u'text/html')
    266             count_hit=count_hit,
    267             print_mode=print_mode,
=>  268             content_only=content_only,
    269         )
    270
*content_only* = 0
 /usr/lib/python2.7/dist-packages/MoinMoin/Page.py in *send_page*(self=<
MoinMoin.Page.Page object>, **keywords={'content_only': 0, 'count_hit': 1,
'print_mode': 0})
   1236         # count hit?
   1237         if keywords.get('count_hit', 0):
=> 1238
             eventlog.EventLog(request).add(request, 'VIEWPAGE',
{'pagename': self.page_name})
   1239
   1240         # load the text
*global* *eventlog* = <module 'MoinMoin.logfile.eventlog' from
'/usr/l...2.7/dist-packages/MoinMoin/logfile/eventlog.pyc'>, eventlog.
*EventLog* = <class MoinMoin.logfile.eventlog.EventLog>, *request* =
<AllContext ['AllContext']>, ).add *undefined*, *self* = <MoinMoin.Page.Page
object>, self.*page_name* = u'SSO/FAQs'
 /usr/lib/python2.7/dist-packages/MoinMoin/logfile/eventlog.py in
*add*(self=<MoinMoin.logfile.eventlog.EventLog
instance>, request=<AllContext ['AllContext']>, eventtype='VIEWPAGE',
values='pagename=SSO%2FFAQs&HTTP_USER_AGENT=Mozilla%2F5....F%
2Flogin.ubuntu.com%2F&REMOTE_ADDR=122.161.48.77', add_http_info=1,
mtime_usecs=1770574355716557L)
     56
         # Encode values in a query string TODO: use more readable format
     57         values = wikiutil.makeQueryString(values)
=>   58
         self._add(u"%d\t%s\t%s\n" % (mtime_usecs, eventtype, values))
     59
     60     def parser(self, line):
*self* = <MoinMoin.logfile.eventlog.EventLog instance>, self.*_add* =
<bound method EventLog._add of <MoinMoin.logfile.eventlog.EventLog
instance>>, *mtime_usecs* = 1770574355716557L, *eventtype* = 'VIEWPAGE',
*values* = 'pagename=SSO%2FFAQs&HTTP_USER_AGENT=Mozilla%2F5....F%
2Flogin.ubuntu.com%2F&REMOTE_ADDR=122.161.48.77'
 /usr/lib/python2.7/dist-packages/MoinMoin/logfile/__init__.py in
*_add*(self=<MoinMoin.logfile.eventlog.EventLog
instance>, line=u'1770574355716557\tVIEWPAGE\tpagename=SSO%2FFAQs&HT...%
2Flogin.ubuntu.com%2F&REMOTE_ADDR=122.161.48.77\n')
    458             if line[-1] != '\n':
    459                 line += '\n'
=>  460             self._output.write(line)
    461
             self._output.close() # does this maybe help against the
sporadic fedora wikis 160 \0 bytes in the edit-log?
    462             del self._output # re-open the output file automagically
*self* = <MoinMoin.logfile.eventlog.EventLog instance>, self.*_output* =
<open file '/srv/help.ubuntu.com/community/data/event-log', mode 'ab'>,
self._output.*write* = <bound method StreamReaderWriter.write of <open ...
ubuntu.com/community/data/event-log', mode 'ab'>>, *line* =
u'1770574355716557\tVIEWPAGE\tpagename=SSO%2FFAQs&HT...%2Flogin.ubuntu.com
%2F&REMOTE_ADDR=122.161.48.77\n'
 /usr/lib/python2.7/codecs.py in *write*(self=<open file '/srv/
help.ubuntu.com/community/data/event-log', mode 'ab'>,
data=u'1770574355716557\tVIEWPAGE\tpagename=SSO%2FFAQs&HT...%
2Flogin.ubuntu.com%2F&REMOTE_ADDR=122.161.48.77\n')
    706     def write(self, data):
    707
=>  708         return self.writer.write(data)
    709
    710     def writelines(self, list):
*self* = <open file '/srv/help.ubuntu.com/community/data/event-log', mode
'ab'>, self.*writer* = <open file '/srv/
help.ubuntu.com/community/data/event-log', mode 'ab'>, self.writer.*write* =
<bound method StreamWriter.write of <open file '...
ubuntu.com/community/data/event-log', mode 'ab'>>, *data* =
u'1770574355716557\tVIEWPAGE\tpagename=SSO%2FFAQs&HT...%2Flogin.ubuntu.com
%2F&REMOTE_ADDR=122.161.48.77\n'
 /usr/lib/python2.7/codecs.py in *write*(self=<open file '/srv/
help.ubuntu.com/community/data/event-log', mode 'ab'>,
object=u'1770574355716557\tVIEWPAGE\tpagename=SSO%2FFAQs&HT...%
2Flogin.ubuntu.com%2F&REMOTE_ADDR=122.161.48.77\n')
    368         """
    369         data, consumed = self.encode(object, self.errors)
=>  370         self.stream.write(data)
    371
    372     def writelines(self, list):
*self* = <open file '/srv/help.ubuntu.com/community/data/event-log', mode
'ab'>, self.*stream* = <open file '/srv/
help.ubuntu.com/community/data/event-log', mode 'ab'>, self.stream.*write* =
<built-in method write of file object>, *data* = '1770574355716557\tVIEWPAGE
\tpagename=SSO%2FFAQs&HT...%2Flogin.ubuntu.com%2F&REMOTE_ADDR=122.161.48.77
\n'

*<type 'exceptions.IOError'>*: [Errno 28] No space left on device
      args = (28, 'No space left on device')
      errno = 28
      filename = None
      message = ''
      strerror = 'No space left on device'


lør. 31. jan. 2026 kl. 08:35 skrev lotuspsychje <[email protected]
>:

> ** Attachment added: "deb2"
>
> https://bugs.launchpad.net/ubuntu/+source/pidgin/+bug/2136313/+attachment/5941793/+files/Schermafdruk%20van%202026-01-31%2008-22-09.png
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/2136313
>
> Title:
>   Pidgin crashed with SIGSEGV in g_type_check_instance_is_a()
>
> Status in pidgin package in Ubuntu:
>   Confirmed
>
> Bug description:
>   Ubuntu 26.04 desktop development branch @ 16/12/2025
>
>   Pidgin crashed with SIGSEGV in g_type_check_instance_is_a()
>
>   on random (or i did not find howto reproduce it yet)
>
>   #0  0x0000726dd1eb01f8 in g_type_check_instance_is_a () from
> /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
>   #1  0x0000726dd28d9582 in gst_device_get_display_name () from
> /usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
>   #2  0x0000726dd1afccd8 in ?? () from
> /usr/lib/x86_64-linux-gnu/libpurple.so.0
>   #3  0x0000726dd28ccff1 in ?? () from
> /usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
>   #4  0x0000726dd1d7ac3b in ?? () from
> /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
>   #5  0x0000726dd1d7c277 in ?? () from
> /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
>   #6  0x0000726dd1d7c617 in g_main_loop_run () from
> /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
>   #7  0x0000726dd2355971 in gtk_main () from
> /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0
>   #8  0x00005de9a2f02aaa in main ()
>
>   The system reported the crash bug itself after pidgin crashed
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 26.04
>   Package: pidgin 1:2.14.14-1ubuntu2
>   ProcVersionSignature: Ubuntu 6.17.0-8.8-generic 6.17.2
>   Uname: Linux 6.17.0-8-generic x86_64
>   ApportVersion: 2.33.1-0ubuntu3
>   Architecture: amd64
>   CasperMD5CheckResult: pass
>   CurrentDesktop: ubuntu:GNOME
>   Date: Tue Dec 16 14:09:14 2025
>   InstallationDate: Installed on 2025-10-21 (56 days ago)
>   InstallationMedia: Ubuntu 25.10 "Questing Quokka" - Release amd64
> (20251007)
>   ProcEnviron:
>    LANG=nl_NL.UTF-8
>    PATH=(custom, no user)
>    SHELL=/bin/bash
>    TERM=xterm-256color
>    XDG_RUNTIME_DIR=<set>
>   SourcePackage: pidgin
>   UpgradeStatus: Upgraded to resolute on 2025-10-21 (56 days ago)
>   ---
>   ProblemType: Bug
>   ApportVersion: 2.33.1-0ubuntu3
>   Architecture: amd64
>   CasperMD5CheckResult: pass
>   CurrentDesktop: ubuntu:GNOME
>   DistroRelease: Ubuntu 26.04
>   InstallationDate: Installed on 2025-10-21 (76 days ago)
>   InstallationMedia: Ubuntu 25.10 "Questing Quokka" - Release amd64
> (20251007)
>   Package: pidgin 1:2.14.14-1ubuntu2
>   PackageArchitecture: amd64
>   ProcEnviron:
>    LANG=nl_NL.UTF-8
>    PATH=(custom, no user)
>    SHELL=/bin/bash
>    TERM=xterm-256color
>    XDG_RUNTIME_DIR=<set>
>   ProcVersionSignature: Ubuntu 6.18.0-8.8-generic 6.18.0
>   Tags: resolute wayland-session
>   Uname: Linux 6.18.0-8-generic x86_64
>   UpgradeStatus: Upgraded to resolute on 2025-10-21 (76 days ago)
>   UserGroups: adm cdrom dip lpadmin plugdev sudo users
>   _MarkForUpload: True
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/pidgin/+bug/2136313/+subscriptions
>
>

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2136313

Title:
  Pidgin crashed with SIGSEGV in g_type_check_instance_is_a()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pidgin/+bug/2136313/+subscriptions


-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to