Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
46ec0b95
Commit
46ec0b95
authored
Mar 31, 2020
by
Rémi Bernon
Committed by
Alexandre Julliard
Mar 31, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Force read data to be NUL terminated.
Signed-off-by:
Rémi Bernon
<
rbernon@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3192fb53
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
gdbproxy.c
programs/winedbg/gdbproxy.c
+3
-1
No files found.
programs/winedbg/gdbproxy.c
View file @
46ec0b95
...
@@ -1848,12 +1848,14 @@ static int fetch_data(struct gdb_context* gdbctx)
...
@@ -1848,12 +1848,14 @@ static int fetch_data(struct gdb_context* gdbctx)
if
(
gdbctx
->
in_len
+
STEP
>
gdbctx
->
in_buf_alloc
)
if
(
gdbctx
->
in_len
+
STEP
>
gdbctx
->
in_buf_alloc
)
gdbctx
->
in_buf
=
packet_realloc
(
gdbctx
->
in_buf
,
gdbctx
->
in_buf_alloc
+=
STEP
);
gdbctx
->
in_buf
=
packet_realloc
(
gdbctx
->
in_buf
,
gdbctx
->
in_buf_alloc
+=
STEP
);
#undef STEP
#undef STEP
len
=
read
(
gdbctx
->
sock
,
gdbctx
->
in_buf
+
gdbctx
->
in_len
,
gdbctx
->
in_buf_alloc
-
gdbctx
->
in_len
);
len
=
read
(
gdbctx
->
sock
,
gdbctx
->
in_buf
+
gdbctx
->
in_len
,
gdbctx
->
in_buf_alloc
-
gdbctx
->
in_len
-
1
);
if
(
len
<=
0
)
break
;
if
(
len
<=
0
)
break
;
gdbctx
->
in_len
+=
len
;
gdbctx
->
in_len
+=
len
;
assert
(
gdbctx
->
in_len
<=
gdbctx
->
in_buf_alloc
);
assert
(
gdbctx
->
in_len
<=
gdbctx
->
in_buf_alloc
);
if
(
len
<
gdbctx
->
in_buf_alloc
-
gdbctx
->
in_len
)
break
;
if
(
len
<
gdbctx
->
in_buf_alloc
-
gdbctx
->
in_len
)
break
;
}
}
gdbctx
->
in_buf
[
gdbctx
->
in_len
]
=
'\0'
;
return
gdbctx
->
in_len
-
in_len
;
return
gdbctx
->
in_len
-
in_len
;
}
}
...
...
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