summaryrefslogtreecommitdiffstats
path: root/tools/qvfb/qvfbshmem.cpp
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2012-12-22 08:32:12 -0800
committerThiago Macieira <thiago.macieira@intel.com>2013-01-25 00:06:50 +0100
commit57756e72adf2081137b97f0e689dd16c770d10b1 (patch)
treef5d570f5911def3a4f13be2993f6bb7fe75ef608 /tools/qvfb/qvfbshmem.cpp
parent3b14dc93cf0ef06f1424d7d6319a1af4505faa53 (diff)
Change all shmget calls to user-only memory4.7
Drop the read and write permissions for group and other users in the system. Change-Id: I8fc753f09126651af3fb82df3049050f0b14e876 (cherry-picked from Qt 5 commit 856f209fb63ae336bfb389a12d2a75fa886dc1c5) Reviewed-by: Richard J. Moore <rich@kde.org> (cherry picked from commit 20b26bdb3dd5e46b01b9a7e1ce8342074df3c89c)
Diffstat (limited to 'tools/qvfb/qvfbshmem.cpp')
-rw-r--r--tools/qvfb/qvfbshmem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/qvfb/qvfbshmem.cpp b/tools/qvfb/qvfbshmem.cpp
index bccc20be48..d8090cc006 100644
--- a/tools/qvfb/qvfbshmem.cpp
+++ b/tools/qvfb/qvfbshmem.cpp
@@ -174,13 +174,13 @@ QShMemViewProtocol::QShMemViewProtocol(int displayid, const QSize &s,
uint data_offset_value = sizeof(QVFbHeader);
int dataSize = bpl * h + data_offset_value;
- shmId = shmget(key, dataSize, IPC_CREAT | 0666);
+ shmId = shmget(key, dataSize, IPC_CREAT | 0600);
if (shmId != -1)
data = (unsigned char *)shmat(shmId, 0, 0);
else {
struct shmid_ds shm;
shmctl(shmId, IPC_RMID, &shm);
- shmId = shmget(key, dataSize, IPC_CREAT | 0666);
+ shmId = shmget(key, dataSize, IPC_CREAT | 0600);
if (shmId == -1) {
perror("QShMemViewProtocol::QShMemViewProtocol");
qFatal("Cannot get shared memory 0x%08x", key);