Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
videolan
vlc
Commits
fd35fe04
Commit
fd35fe04
authored
Jan 20, 2014
by
Felix Abecassis
Committed by
Jean-Baptiste Kempf
Jan 20, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DirectDraw: do not save a string that is deallocated immediately after.
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
bb964cd5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/video_output/msw/directx.c
modules/video_output/msw/directx.c
+2
-2
No files found.
modules/video_output/msw/directx.c
View file @
fd35fe04
...
@@ -1424,8 +1424,8 @@ static BOOL WINAPI DirectXEnumCallback2(GUID *guid, LPTSTR desc,
...
@@ -1424,8 +1424,8 @@ static BOOL WINAPI DirectXEnumCallback2(GUID *guid, LPTSTR desc,
ctx
->
values
=
xrealloc
(
ctx
->
values
,
(
ctx
->
count
+
1
)
*
sizeof
(
char
*
));
ctx
->
values
=
xrealloc
(
ctx
->
values
,
(
ctx
->
count
+
1
)
*
sizeof
(
char
*
));
ctx
->
descs
=
xrealloc
(
ctx
->
descs
,
(
ctx
->
count
+
1
)
*
sizeof
(
char
*
));
ctx
->
descs
=
xrealloc
(
ctx
->
descs
,
(
ctx
->
count
+
1
)
*
sizeof
(
char
*
));
ctx
->
values
[
ctx
->
count
]
=
psz_drivername
;
ctx
->
values
[
ctx
->
count
]
=
strdup
(
psz_drivername
)
;
ctx
->
descs
[
ctx
->
count
]
=
psz_drivername
;
ctx
->
descs
[
ctx
->
count
]
=
strdup
(
psz_drivername
)
;
ctx
->
count
++
;
ctx
->
count
++
;
free
(
psz_drivername
);
free
(
psz_drivername
);
...
...
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