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
cba2b305
Commit
cba2b305
authored
Jul 22, 2004
by
Marcus Meissner
Committed by
Alexandre Julliard
Jul 22, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed 2 more casted lvalue issues.
parent
2d0d4847
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
avifile.c
dlls/avifil32/avifile.c
+1
-1
editstream.c
dlls/avifil32/editstream.c
+1
-1
No files found.
dlls/avifil32/avifile.c
View file @
cba2b305
...
...
@@ -1115,7 +1115,7 @@ static HRESULT WINAPI IAVIStream_fnRead(IAVIStream *iface, LONG start,
block
++
;
offset
=
0
;
((
BYTE
*
)
buffer
)
+=
size
;
buffer
=
((
LPBYTE
)
buffer
)
+
size
;
samples
-=
size
;
buffersize
-=
size
;
...
...
dlls/avifil32/editstream.c
View file @
cba2b305
...
...
@@ -1012,7 +1012,7 @@ static HRESULT WINAPI IEditAVIStream_fnRead(IAVIStream*iface,LONG start,
if
(
bytesread
!=
NULL
)
*
bytesread
+=
readBytes
;
if
(
buffer
!=
NULL
)
{
(
LPBYTE
)
buffer
+=
readBytes
;
buffer
=
((
LPBYTE
)
buffer
)
+
readBytes
;
buffersize
-=
readBytes
;
}
start
+=
count
;
...
...
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