Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
d156ce5a
Unverified
Commit
d156ce5a
authored
Mar 01, 2019
by
Mike Gabriel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'uli42-pr/xfixes_memset' into 3.6.x
Attributes GH PR #788:
https://github.com/ArcticaProject/nx-libs/pull/788
parents
a70e36c8
e7a50079
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
85 additions
and
72 deletions
+85
-72
glxcmds.c
nx-X11/programs/Xserver/GL/glx/glxcmds.c
+2
-2
sync.c
nx-X11/programs/Xserver/Xext/sync.c
+1
-1
damageext.c
nx-X11/programs/Xserver/damageext/damageext.c
+5
-5
dbe.c
nx-X11/programs/Xserver/dbe/dbe.c
+18
-16
NXrender.c
nx-X11/programs/Xserver/hw/nxagent/NXrender.c
+8
-7
record.c
nx-X11/programs/Xserver/record/record.c
+21
-14
render.c
nx-X11/programs/Xserver/render/render.c
+9
-9
cursor.c
nx-X11/programs/Xserver/xfixes/cursor.c
+13
-11
region.c
nx-X11/programs/Xserver/xfixes/region.c
+2
-2
xfixes.c
nx-X11/programs/Xserver/xfixes/xfixes.c
+6
-5
No files found.
nx-X11/programs/Xserver/GL/glx/glxcmds.c
View file @
d156ce5a
...
...
@@ -2084,7 +2084,7 @@ int __glXQueryExtensionsString(__GLXclientState *cl, GLbyte *pc)
reply
.
n
=
n
;
/* Allocate buffer to make sure it's a multiple of 4 bytes big.*/
buf
=
(
char
*
)
malloc
(
length
<<
2
);
buf
=
calloc
(
length
,
4
);
if
(
buf
==
NULL
)
return
BadAlloc
;
memcpy
(
buf
,
ptr
,
n
);
...
...
@@ -2141,7 +2141,7 @@ int __glXQueryServerString(__GLXclientState *cl, GLbyte *pc)
reply
.
length
=
length
;
reply
.
n
=
n
;
if
((
buf
=
(
char
*
)
malloc
(
length
<<
2
))
==
NULL
)
{
if
((
buf
=
calloc
(
length
,
4
))
==
NULL
)
{
return
BadAlloc
;
}
memcpy
(
buf
,
ptr
,
n
);
...
...
nx-X11/programs/Xserver/Xext/sync.c
View file @
d156ce5a
...
...
@@ -590,7 +590,7 @@ SyncSendCounterNotifyEvents(client, ppAwait, num_events)
if
(
client
->
clientGone
)
return
;
pev
=
pEvents
=
(
xSyncCounterNotifyEvent
*
)
malloc
(
num_events
*
sizeof
(
xSyncCounterNotifyEvent
));
calloc
(
num_events
,
sizeof
(
xSyncCounterNotifyEvent
));
if
(
!
pEvents
)
return
;
UpdateCurrentTime
();
...
...
nx-X11/programs/Xserver/damageext/damageext.c
View file @
d156ce5a
...
...
@@ -132,15 +132,15 @@ static int
ProcDamageQueryVersion
(
ClientPtr
client
)
{
DamageClientPtr
pDamageClient
=
GetDamageClient
(
client
);
xDamageQueryVersionReply
rep
;
xDamageQueryVersionReply
rep
=
{
.
type
=
X_Reply
,
.
sequenceNumber
=
client
->
sequence
,
.
length
=
0
};
REQUEST
(
xDamageQueryVersionReq
);
REQUEST_SIZE_MATCH
(
xDamageQueryVersionReq
);
memset
(
&
rep
,
0
,
sizeof
(
xDamageQueryVersionReply
));
rep
.
type
=
X_Reply
;
rep
.
length
=
0
;
rep
.
sequenceNumber
=
client
->
sequence
;
if
(
stuff
->
majorVersion
<
SERVER_DAMAGE_MAJOR_VERSION
)
{
rep
.
majorVersion
=
stuff
->
majorVersion
;
rep
.
minorVersion
=
stuff
->
minorVersion
;
...
...
nx-X11/programs/Xserver/dbe/dbe.c
View file @
d156ce5a
...
...
@@ -312,16 +312,16 @@ static int
ProcDbeGetVersion
(
ClientPtr
client
)
{
/* REQUEST(xDbeGetVersionReq); */
xDbeGetVersionReply
rep
;
xDbeGetVersionReply
rep
=
{
.
type
=
X_Reply
,
.
sequenceNumber
=
client
->
sequence
,
.
length
=
0
,
.
majorVersion
=
DBE_MAJOR_VERSION
,
.
minorVersion
=
DBE_MINOR_VERSION
};
REQUEST_SIZE_MATCH
(
xDbeGetVersionReq
);
rep
.
type
=
X_Reply
;
rep
.
length
=
0
;
rep
.
sequenceNumber
=
client
->
sequence
;
rep
.
majorVersion
=
DBE_MAJOR_VERSION
;
rep
.
minorVersion
=
DBE_MINOR_VERSION
;
if
(
client
->
swapped
)
{
swaps
(
&
rep
.
sequenceNumber
);
...
...
@@ -946,10 +946,12 @@ ProcDbeGetVisualInfo(ClientPtr client)
length
+=
pScrVisInfo
[
i
].
count
*
sizeof
(
xDbeVisInfo
);
}
rep
.
type
=
X_Reply
;
rep
.
sequenceNumber
=
client
->
sequence
;
rep
.
length
=
length
>>
2
;
rep
.
m
=
count
;
rep
=
(
xDbeGetVisualInfoReply
)
{
.
type
=
X_Reply
,
.
sequenceNumber
=
client
->
sequence
,
.
length
=
length
>>
2
,
.
m
=
count
};
if
(
client
->
swapped
)
{
...
...
@@ -1041,7 +1043,11 @@ static int
ProcDbeGetBackBufferAttributes
(
ClientPtr
client
)
{
REQUEST
(
xDbeGetBackBufferAttributesReq
);
xDbeGetBackBufferAttributesReply
rep
;
xDbeGetBackBufferAttributesReply
rep
=
{
.
type
=
X_Reply
,
.
sequenceNumber
=
client
->
sequence
,
.
length
=
0
};
DbeWindowPrivPtr
pDbeWindowPriv
;
REQUEST_SIZE_MATCH
(
xDbeGetBackBufferAttributesReq
);
...
...
@@ -1056,10 +1062,6 @@ ProcDbeGetBackBufferAttributes(ClientPtr client)
rep
.
attributes
=
pDbeWindowPriv
->
pWindow
->
drawable
.
id
;
}
rep
.
type
=
X_Reply
;
rep
.
sequenceNumber
=
client
->
sequence
;
rep
.
length
=
0
;
if
(
client
->
swapped
)
{
swaps
(
&
rep
.
sequenceNumber
);
...
...
nx-X11/programs/Xserver/hw/nxagent/NXrender.c
View file @
d156ce5a
...
...
@@ -135,7 +135,14 @@ static int
ProcRenderQueryVersion
(
ClientPtr
client
)
{
RenderClientPtr
pRenderClient
=
GetRenderClient
(
client
);
xRenderQueryVersionReply
rep
;
xRenderQueryVersionReply
rep
=
{
.
type
=
X_Reply
,
.
sequenceNumber
=
client
->
sequence
,
.
length
=
0
,
.
majorVersion
=
nxagentRenderVersionMajor
,
.
minorVersion
=
nxagentRenderVersionMinor
};
REQUEST
(
xRenderQueryVersionReq
);
REQUEST_SIZE_MATCH
(
xRenderQueryVersionReq
);
...
...
@@ -143,12 +150,6 @@ ProcRenderQueryVersion (ClientPtr client)
pRenderClient
->
major_version
=
stuff
->
majorVersion
;
pRenderClient
->
minor_version
=
stuff
->
minorVersion
;
memset
(
&
rep
,
0
,
sizeof
(
xRenderQueryVersionReply
));
rep
.
type
=
X_Reply
;
rep
.
length
=
0
;
rep
.
sequenceNumber
=
client
->
sequence
;
rep
.
majorVersion
=
nxagentRenderVersionMajor
;
rep
.
minorVersion
=
nxagentRenderVersionMinor
;
if
(
client
->
swapped
)
{
swaps
(
&
rep
.
sequenceNumber
);
swapl
(
&
rep
.
length
);
...
...
nx-X11/programs/Xserver/record/record.c
View file @
d156ce5a
...
...
@@ -1949,14 +1949,16 @@ static int
ProcRecordQueryVersion
(
ClientPtr
client
)
{
/* REQUEST(xRecordQueryVersionReq); */
xRecordQueryVersionReply
rep
;
xRecordQueryVersionReply
rep
=
{
.
type
=
X_Reply
,
.
sequenceNumber
=
client
->
sequence
,
.
length
=
0
,
.
majorVersion
=
SERVER_RECORD_MAJOR_VERSION
,
.
minorVersion
=
SERVER_RECORD_MINOR_VERSION
};
REQUEST_SIZE_MATCH
(
xRecordQueryVersionReq
);
rep
.
type
=
X_Reply
;
rep
.
sequenceNumber
=
client
->
sequence
;
rep
.
length
=
0
;
rep
.
majorVersion
=
SERVER_RECORD_MAJOR_VERSION
;
rep
.
minorVersion
=
SERVER_RECORD_MINOR_VERSION
;
if
(
client
->
swapped
)
{
swaps
(
&
rep
.
sequenceNumber
);
...
...
@@ -2287,6 +2289,7 @@ ProcRecordGetContext(ClientPtr client)
GetContextRangeInfoPtr
pri
;
int
i
;
int
err
;
CARD32
nClients
,
length
;
REQUEST_SIZE_MATCH
(
xRecordGetContextReq
);
VERIFY_CONTEXT
(
pContext
,
stuff
->
context
,
client
);
...
...
@@ -2359,24 +2362,28 @@ ProcRecordGetContext(ClientPtr client)
/* calculate number of clients and reply length */
rep
.
nClients
=
0
;
rep
.
length
=
0
;
nClients
=
0
;
length
=
0
;
for
(
pRCAP
=
pContext
->
pListOfRCAP
,
pri
=
pRangeInfo
;
pRCAP
;
pRCAP
=
pRCAP
->
pNextRCAP
,
pri
++
)
{
rep
.
nClients
+=
pRCAP
->
numClients
;
rep
.
length
+=
pRCAP
->
numClients
*
nClients
+=
pRCAP
->
numClients
;
length
+=
pRCAP
->
numClients
*
(
(
sizeof
(
xRecordClientInfo
)
>>
2
)
+
pri
->
nRanges
*
(
sizeof
(
xRecordRange
)
>>
2
));
}
/* write the reply header */
rep
.
type
=
X_Reply
;
rep
.
sequenceNumber
=
client
->
sequence
;
rep
.
enabled
=
pContext
->
pRecordingClient
!=
NULL
;
rep
.
elementHeader
=
pContext
->
elemHeaders
;
rep
=
(
xRecordGetContextReply
)
{
.
type
=
X_Reply
,
.
enabled
=
pContext
->
pRecordingClient
!=
NULL
,
.
sequenceNumber
=
client
->
sequence
,
.
length
=
length
,
.
elementHeader
=
pContext
->
elemHeaders
,
.
nClients
=
nClients
};
if
(
client
->
swapped
)
{
swaps
(
&
rep
.
sequenceNumber
);
...
...
nx-X11/programs/Xserver/render/render.c
View file @
d156ce5a
...
...
@@ -274,7 +274,13 @@ static int
ProcRenderQueryVersion
(
ClientPtr
client
)
{
RenderClientPtr
pRenderClient
=
GetRenderClient
(
client
);
xRenderQueryVersionReply
rep
;
xRenderQueryVersionReply
rep
=
{
.
type
=
X_Reply
,
.
sequenceNumber
=
client
->
sequence
,
.
length
=
0
,
.
majorVersion
=
SERVER_RENDER_MAJOR_VERSION
,
.
minorVersion
=
SERVER_RENDER_MINOR_VERSION
};
REQUEST
(
xRenderQueryVersionReq
);
...
...
@@ -283,12 +289,6 @@ ProcRenderQueryVersion (ClientPtr client)
pRenderClient
->
major_version
=
stuff
->
majorVersion
;
pRenderClient
->
minor_version
=
stuff
->
minorVersion
;
memset
(
&
rep
,
0
,
sizeof
(
xRenderQueryVersionReply
));
rep
.
type
=
X_Reply
;
rep
.
length
=
0
;
rep
.
sequenceNumber
=
client
->
sequence
;
rep
.
majorVersion
=
SERVER_RENDER_MAJOR_VERSION
;
rep
.
minorVersion
=
SERVER_RENDER_MINOR_VERSION
;
if
(
client
->
swapped
)
{
swaps
(
&
rep
.
sequenceNumber
);
swapl
(
&
rep
.
length
);
...
...
@@ -580,7 +580,7 @@ ProcRenderQueryPictIndexValues (ClientPtr client)
num
=
pFormat
->
index
.
nvalues
;
rlength
=
(
sizeof
(
xRenderQueryPictIndexValuesReply
)
+
num
*
sizeof
(
xIndexValue
));
reply
=
(
xRenderQueryPictIndexValuesReply
*
)
malloc
(
rlength
);
reply
=
(
xRenderQueryPictIndexValuesReply
*
)
calloc
(
1
,
rlength
);
if
(
!
reply
)
return
BadAlloc
;
...
...
@@ -1746,7 +1746,7 @@ ProcRenderQueryFilters (ClientPtr client)
}
len
=
((
nnames
+
1
)
>>
1
)
+
((
nbytesName
+
3
)
>>
2
);
total_bytes
=
sizeof
(
xRenderQueryFiltersReply
)
+
(
len
<<
2
);
reply
=
(
xRenderQueryFiltersReply
*
)
malloc
(
total_bytes
);
reply
=
(
xRenderQueryFiltersReply
*
)
calloc
(
1
,
total_bytes
);
if
(
!
reply
)
return
BadAlloc
;
aliases
=
(
INT16
*
)
(
reply
+
1
);
...
...
nx-X11/programs/Xserver/xfixes/cursor.c
View file @
d156ce5a
...
...
@@ -201,7 +201,7 @@ XFixesSelectCursorInput (ClientPtr pClient,
}
if
(
!
e
)
{
e
=
(
CursorEventPtr
)
malloc
(
sizeof
(
CursorEventRec
));
e
=
(
CursorEventPtr
)
calloc
(
1
,
sizeof
(
CursorEventRec
));
if
(
!
e
)
return
BadAlloc
;
...
...
@@ -364,8 +364,8 @@ ProcXFixesGetCursorImage (ClientPtr client)
width
=
pCursor
->
bits
->
width
;
height
=
pCursor
->
bits
->
height
;
npixels
=
width
*
height
;
rep
=
m
alloc
(
sizeof
(
xXFixesGetCursorImageReply
)
+
npixels
*
sizeof
(
CARD32
));
rep
=
c
alloc
(
sizeof
(
xXFixesGetCursorImageReply
)
+
npixels
*
sizeof
(
CARD32
)
,
1
);
if
(
!
rep
)
return
BadAlloc
;
...
...
@@ -456,11 +456,13 @@ ProcXFixesGetCursorName (ClientPtr client)
str
=
""
;
len
=
strlen
(
str
);
reply
.
type
=
X_Reply
;
reply
.
length
=
(
len
+
3
)
>>
2
;
reply
.
sequenceNumber
=
client
->
sequence
;
reply
.
atom
=
pCursor
->
name
;
reply
.
nbytes
=
len
;
reply
=
(
xXFixesGetCursorNameReply
)
{
.
type
=
X_Reply
,
.
sequenceNumber
=
client
->
sequence
,
.
length
=
(
len
+
3
)
>>
2
,
.
atom
=
pCursor
->
name
,
.
nbytes
=
len
};
if
(
client
->
swapped
)
{
swaps
(
&
reply
.
sequenceNumber
);
swapl
(
&
reply
.
length
);
...
...
@@ -508,8 +510,8 @@ ProcXFixesGetCursorImageAndName (ClientPtr client)
name
=
pCursor
->
name
?
NameForAtom
(
pCursor
->
name
)
:
""
;
nbytes
=
strlen
(
name
);
nbytesRound
=
(
nbytes
+
3
)
&
~
3
;
rep
=
m
alloc
(
sizeof
(
xXFixesGetCursorImageAndNameReply
)
+
npixels
*
sizeof
(
CARD32
)
+
nbytesRound
);
rep
=
c
alloc
(
sizeof
(
xXFixesGetCursorImageAndNameReply
)
+
npixels
*
sizeof
(
CARD32
)
+
nbytesRound
,
1
);
if
(
!
rep
)
return
BadAlloc
;
...
...
@@ -757,7 +759,7 @@ createCursorHideCount (ClientPtr pClient, ScreenPtr pScreen)
CursorScreenPtr
cs
=
GetCursorScreen
(
pScreen
);
CursorHideCountPtr
pChc
;
pChc
=
(
CursorHideCountPtr
)
malloc
(
sizeof
(
CursorHideCountRec
));
pChc
=
(
CursorHideCountPtr
)
calloc
(
1
,
sizeof
(
CursorHideCountRec
));
if
(
pChc
==
NULL
)
{
return
BadAlloc
;
}
...
...
nx-X11/programs/Xserver/xfixes/region.c
View file @
d156ce5a
...
...
@@ -570,8 +570,8 @@ ProcXFixesFetchRegion (ClientPtr client)
pBox
=
RegionRects
(
pRegion
);
nBox
=
RegionNumRects
(
pRegion
);
reply
=
m
alloc
(
sizeof
(
xXFixesFetchRegionReply
)
+
nBox
*
sizeof
(
xRectangle
));
reply
=
c
alloc
(
sizeof
(
xXFixesFetchRegionReply
)
+
nBox
*
sizeof
(
xRectangle
)
,
1
);
if
(
!
reply
)
return
BadAlloc
;
reply
->
type
=
X_Reply
;
...
...
nx-X11/programs/Xserver/xfixes/xfixes.c
View file @
d156ce5a
...
...
@@ -56,14 +56,15 @@ static int
ProcXFixesQueryVersion
(
ClientPtr
client
)
{
XFixesClientPtr
pXFixesClient
=
GetXFixesClient
(
client
);
xXFixesQueryVersionReply
rep
;
xXFixesQueryVersionReply
rep
=
{
.
type
=
X_Reply
,
.
sequenceNumber
=
client
->
sequence
,
.
length
=
0
};
REQUEST
(
xXFixesQueryVersionReq
);
REQUEST_SIZE_MATCH
(
xXFixesQueryVersionReq
);
memset
(
&
rep
,
0
,
sizeof
(
xXFixesQueryVersionReply
));
rep
.
type
=
X_Reply
;
rep
.
length
=
0
;
rep
.
sequenceNumber
=
client
->
sequence
;
if
(
stuff
->
majorVersion
<
SERVER_XFIXES_MAJOR_VERSION
)
{
rep
.
majorVersion
=
stuff
->
majorVersion
;
rep
.
minorVersion
=
stuff
->
minorVersion
;
...
...
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