Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
bitmask-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
leap
bitmask-dev
Commits
c1d2033d
There was a problem fetching the pipeline summary.
Unverified
Commit
c1d2033d
authored
6 years ago
by
Kali Kaneko
Browse files
Options
Downloads
Patches
Plain Diff
[bug] workaround for segfault caused by qtwebview bug
parent
513a1c15
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!262
[bug] workaround for segfault caused by qtwebview bug
Pipeline
#
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/changelog.rst
+4
-0
4 additions, 0 deletions
docs/changelog.rst
src/leap/bitmask/gui/app.py
+8
-0
8 additions, 0 deletions
src/leap/bitmask/gui/app.py
with
12 additions
and
0 deletions
docs/changelog.rst
+
4
−
0
View file @
c1d2033d
...
...
@@ -5,6 +5,10 @@ Changelog
-------------------------------
.. note:: This version is not yet released and is under active development.
Bugfixes
~~~~~~~~
- `#9278 <https://0xacab.org/leap/bitmask-dev/issues/9278>`_: Workaround for QtWebview bug causing a crash.
Misc
~~~~
- Fix snap bug in install hook when python2 was not installed.
...
...
This diff is collapsed.
Click to expand it.
src/leap/bitmask/gui/app.py
+
8
−
0
View file @
c1d2033d
...
...
@@ -21,12 +21,14 @@ It just launches a wekbit browser that runs the local web-ui served by bitmaskd
when the web service is running.
"""
import
ctypes
import
os
import
platform
import
signal
import
sys
import
webbrowser
from
ctypes
import
import
util
from
functools
import
partial
from
multiprocessing
import
Process
...
...
@@ -41,6 +43,12 @@ from leap.bitmask.gui.housekeeping import check_stale_pidfile
HAS_WEBENGINE
=
False
# This is a workaround for #9278.
# See https://bugs.launchpad.net/ubuntu/+source/
# qtbase-opensource-src/+bug/1761708
ctypes
.
CDLL
(
util
.
find_library
(
'
GL
'
),
ctypes
.
RTLD_GLOBAL
)
if
platform
.
system
()
==
'
Windows
'
:
from
multiprocessing
import
freeze_support
from
PySide
import
QtCore
,
QtGui
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment