Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
458
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Merge requests
!1777
[3.0] meta_engine: fix junk at end or raw unterminated ID3 text
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[3.0] meta_engine: fix junk at end or raw unterminated ID3 text
fcartegnie/vlc:bp130401
into
3.0.x
Overview
3
Commits
1
Pipelines
3
Changes
1
Merged
François Cartegnie
requested to merge
fcartegnie/vlc:bp130401
into
3.0.x
3 years ago
Overview
3
Commits
1
Pipelines
3
Changes
1
Expand
(cherry picked from commit
4f74c5ca
)
0
0
Merge request reports
Compare
3.0.x
version 2
5bcb63a5
3 years ago
version 1
ef49112a
3 years ago
3.0.x (base)
and
latest version
latest version
b6a50574
1 commit,
3 years ago
version 2
5bcb63a5
1 commit,
3 years ago
version 1
ef49112a
1 commit,
3 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
modules/meta_engine/ID3Text.h
+
1
−
1
Options
@@ -47,7 +47,7 @@ static const char * ID3TextConv( const uint8_t *p_buf, size_t i_buf,
psz
=
p_alloc
=
(
char
*
)
malloc
(
i_buf
+
1
);
if
(
p_alloc
)
{
memcpy
(
p_alloc
,
p_buf
,
i_buf
-
1
);
memcpy
(
p_alloc
,
p_buf
,
i_buf
);
p_alloc
[
i_buf
]
=
'\0'
;
}
}
Loading