Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gesh
GHC
Commits
a2126c04
Commit
a2126c04
authored
25 years ago
by
Simon Marlow
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 1999-06-14 09:49:26 by simonmar]
Oops, forgot that the memory returned from realloc could have moved.
parent
acd93db1
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ghc/compiler/utils/StringBuffer.lhs
+6
-6
6 additions, 6 deletions
ghc/compiler/utils/StringBuffer.lhs
with
6 additions
and
6 deletions
ghc/compiler/utils/StringBuffer.lhs
+
6
−
6
View file @
a2126c04
...
...
@@ -225,11 +225,11 @@ trySlurp handle sz_i chunk =
tAB_SIZE = 8#
slurpFile :: Int# -> Int# -> Addr -> Int# -> Int# -> IO Int
slurpFile :: Int# -> Int# -> Addr -> Int# -> Int# -> IO
(Addr,
Int
)
slurpFile c off chunk chunk_sz max_off = slurp c off
where
slurp :: Int# -> Int# -> IO Int
slurp :: Int# -> Int# -> IO
(Addr,
Int
)
slurp c off | off >=# max_off = do
let new_sz = chunk_sz *# 2#
chunk' <- reAllocMem chunk (I# new_sz)
...
...
@@ -239,7 +239,7 @@ trySlurp handle sz_i chunk =
if intc == ((-1)::Int)
then do errtype <- getErrType
if errtype == (ERR_EOF :: Int)
then return (I# off)
then return (
chunk,
I# off)
else constructErrorAndFail "slurpFile"
else case chr intc of
'\t' -> tabIt c off
...
...
@@ -248,7 +248,7 @@ trySlurp handle sz_i chunk =
| otherwise = c +# 1#
slurp c' (off +# 1#)
tabIt :: Int# -> Int# -> IO Int
tabIt :: Int# -> Int# -> IO
(Addr,
Int
)
-- can't run out of buffer in here, because we reserved an
-- extra tAB_SIZE bytes at the end earlier.
tabIt c off = do
...
...
@@ -262,11 +262,11 @@ trySlurp handle sz_i chunk =
-- allow space for a full tab at the end of the buffer
-- (that's what the max_off thing is for)
rc <- slurpFile 0# 0# chunk chunk_sz (chunk_sz -# tAB_SIZE)
(chunk',
rc
)
<- slurpFile 0# 0# chunk chunk_sz (chunk_sz -# tAB_SIZE)
writeHandle handle handle_
if rc < (0::Int)
then constructErrorAndFail "slurpFile"
else return (chunk, rc)
else return (chunk
'
, rc)
reAllocMem :: Addr -> Int -> IO Addr
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment