Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
87808807
Commit
87808807
authored
Jul 25, 2005
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
this still doesn't look safe but at least i can't see why it would
segfault
parent
909ee460
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/gui/wxwindows/updatevlc.cpp
modules/gui/wxwindows/updatevlc.cpp
+4
-2
No files found.
modules/gui/wxwindows/updatevlc.cpp
View file @
87808807
...
@@ -348,7 +348,9 @@ void UpdateVLC::GetData()
...
@@ -348,7 +348,9 @@ void UpdateVLC::GetData()
psz_eltvalue
=
xml_ReaderValue
(
p_xml_reader
);
psz_eltvalue
=
xml_ReaderValue
(
p_xml_reader
);
msg_Dbg
(
p_intf
,
" text : %s"
,
psz_eltvalue
);
msg_Dbg
(
p_intf
,
" text : %s"
,
psz_eltvalue
);
/* This doesn't look safe ... but it works */
/* This doesn't look safe ... but it works */
it
->
m_files
.
back
().
description
=
wxU
(
psz_eltvalue
);
if
(
!
m_versions
.
empty
()
)
if
(
!
it
->
m_files
.
empty
()
)
it
->
m_files
.
back
().
description
=
wxU
(
psz_eltvalue
);
free
(
psz_eltvalue
);
free
(
psz_eltvalue
);
break
;
break
;
}
}
...
@@ -491,7 +493,7 @@ void UpdateVLC::UpdateUpdatesTree()
...
@@ -491,7 +493,7 @@ void UpdateVLC::UpdateUpdatesTree()
/* build tree */
/* build tree */
parent
=
updates_tree
->
AppendItem
(
updates_root
,
wxT
(
""
)
);
parent
=
updates_tree
->
AppendItem
(
updates_root
,
wxT
(
""
)
);
updates_tree
->
AppendItem
(
parent
,
updates_tree
->
AppendItem
(
parent
,
wxT
(
"Current version : "
PACKAGE_VERSION
),
wxT
(
"Current version : "
PACKAGE_VERSION
_MAJOR
"."
PACKAGE_VERSION_MINOR
"."
PACKAGE_VERSION_REVISION
"-"
PACKAGE_VERSION_EXTRA
),
-
1
,
-
1
,
new
UpdatesTreeItem
(
wxT
(
""
)
));
-
1
,
-
1
,
new
UpdatesTreeItem
(
wxT
(
""
)
));
it
=
m_versions
.
begin
();
it
=
m_versions
.
begin
();
while
(
it
!=
m_versions
.
end
()
)
while
(
it
!=
m_versions
.
end
()
)
...
...
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