Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
X
xserver
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
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
Alexander Volkov
xserver
Commits
07ecf495
Commit
07ecf495
authored
Apr 03, 2006
by
Adam Jackson
💣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Coverity #992: Prevent a NULL chase.
parent
c6b3b335
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
ChangeLog
ChangeLog
+5
-0
Xext/sync.c
Xext/sync.c
+2
-1
No files found.
ChangeLog
View file @
07ecf495
2006-04-02 Adam Jackson <ajax@freedesktop.org>
* Xext/sync.c:
Coverity #992: Prevent a NULL chase.
2006-04-02 Adam Jackson <ajax@freedesktop.org>
* configure.ac:
...
...
Xext/sync.c
View file @
07ecf495
...
...
@@ -1112,7 +1112,7 @@ SyncComputeBracketValues(pCounter, startOver)
{
SyncTriggerList
*
pCur
;
SyncTrigger
*
pTrigger
;
SysCounterInfo
*
psci
=
pCounter
->
pSysCounterInfo
;
SysCounterInfo
*
psci
;
CARD64
*
pnewgtval
=
NULL
;
CARD64
*
pnewltval
=
NULL
;
SyncCounterType
ct
;
...
...
@@ -1120,6 +1120,7 @@ SyncComputeBracketValues(pCounter, startOver)
if
(
!
pCounter
)
return
;
psci
=
pCounter
->
pSysCounterInfo
;
ct
=
pCounter
->
pSysCounterInfo
->
counterType
;
if
(
ct
==
XSyncCounterNeverChanges
)
return
;
...
...
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