Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
4,251
Issues
4,251
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
395
Merge Requests
395
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
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
Glasgow Haskell Compiler
GHC
Commits
5ffea0c6
Commit
5ffea0c6
authored
Dec 20, 2019
by
Tamar Christina
Committed by
Marge Bot
Jan 06, 2020
2
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix overflow.
parent
4056b966
Pipeline
#14279
passed with stages
in 560 minutes and 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
rts/linker/PEi386.c
rts/linker/PEi386.c
+1
-1
No files found.
rts/linker/PEi386.c
View file @
5ffea0c6
...
...
@@ -1255,7 +1255,7 @@ ocVerifyImage_PEi386 ( ObjectCode* oc )
*/
COFF_reloc
*
rel
=
(
COFF_reloc
*
)
myindex
(
sizeof_COFF_reloc
,
reltab
,
0
);
noRelocs
=
rel
->
VirtualAddress
;
noRelocs
=
rel
->
VirtualAddress
-
1
;
relocs_offset
=
1
;
}
else
{
noRelocs
=
sectab_i
->
NumberOfRelocations
;
...
...
Marge Bot
💬
@marge-bot
mentioned in merge request
!2349 (closed)
·
Jan 06, 2020
mentioned in merge request
!2349 (closed)
mentioned in merge request !2349
Toggle commit list
Tamar Christina
@Phyx
mentioned in commit
2dc35bc9
·
Jan 07, 2020
mentioned in commit
2dc35bc9
mentioned in commit 2dc35bc95c3fa646f757d3aed27951ef41e3e007
Toggle commit list
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