Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
9c2b79c8
Commit
9c2b79c8
authored
Jul 08, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
X11: I don't want random local users accessing my videos!
(cherry picked from commit
0e4d1695
)
parent
e2989313
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
modules/video_output/x11/xcommon.c
modules/video_output/x11/xcommon.c
+2
-3
No files found.
modules/video_output/x11/xcommon.c
View file @
9c2b79c8
...
...
@@ -2920,9 +2920,8 @@ IMAGE_TYPE * CreateShmImage( vout_thread_t *p_vout,
return
NULL
;
}
/* Allocate shared memory segment - 0776 set the access permission
* rights (like umask), they are not yet supported by all X servers */
p_shm
->
shmid
=
shmget
(
IPC_PRIVATE
,
DATA_SIZE
(
p_image
),
IPC_CREAT
|
0776
);
/* Allocate shared memory segment. */
p_shm
->
shmid
=
shmget
(
IPC_PRIVATE
,
DATA_SIZE
(
p_image
),
IPC_CREAT
|
0600
);
if
(
p_shm
->
shmid
<
0
)
{
msg_Err
(
p_vout
,
"cannot allocate shared image data (%m)"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment