Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Sebastian Dröge
gst-plugins-base
Commits
70a982e7
Commit
70a982e7
authored
May 23, 2011
by
Stefan Kost
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xmptag: an uint value can't be <0
parent
b91b12b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
gst-libs/gst/tag/gstxmptag.c
gst-libs/gst/tag/gstxmptag.c
+1
-1
No files found.
gst-libs/gst/tag/gstxmptag.c
View file @
70a982e7
...
...
@@ -844,7 +844,7 @@ deserialize_xmp_rating (XmpTag * xmptag, GstTagList * taglist,
return
;
}
if
(
value
<
0
||
value
>
100
)
{
if
(
value
>
100
)
{
GST_WARNING
(
"Unsupported Rating tag %u (should be from 0 to 100), "
"ignoring"
,
value
);
return
;
...
...
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