소스 검색

Be more restrictive with shared memory mode bits

Everyone else seems to get by with using 0600, so let's do the same.
tags/v1.7.90
Pierre Ossman 7 년 전
부모
커밋
d71508b94b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      vncviewer/PlatformPixelBuffer.cxx

+ 1
- 1
vncviewer/PlatformPixelBuffer.cxx 파일 보기

@@ -154,7 +154,7 @@ bool PlatformPixelBuffer::setupShm()

shminfo->shmid = shmget(IPC_PRIVATE,
xim->bytes_per_line * xim->height,
IPC_CREAT|0777);
IPC_CREAT|0600);
if (shminfo->shmid == -1)
goto free_xim;


Loading…
취소
저장