mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
gstvalue: Don't loop forever when serializing invalid flag
The serialization code would loop forever if an invalid flag was sent into it. With unit test for this corner case. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2823>
This commit is contained in:
parent
404b646b6e
commit
927334ef43
2 changed files with 42 additions and 8 deletions
|
@ -4195,15 +4195,23 @@ gst_value_serialize_gflags (const GValue * value)
|
||||||
result = g_strdup ("");
|
result = g_strdup ("");
|
||||||
while (flags) {
|
while (flags) {
|
||||||
fl = g_flags_get_first_value (klass, flags);
|
fl = g_flags_get_first_value (klass, flags);
|
||||||
if (fl != NULL) {
|
if (fl == NULL) {
|
||||||
tmp = g_strconcat (result, (first ? "" : "+"), fl->value_name, NULL);
|
if (flags) {
|
||||||
g_free (result);
|
g_critical ("Could not serialize invalid flags 0x%x of type %s",
|
||||||
result = tmp;
|
flags, G_VALUE_TYPE_NAME (value));
|
||||||
first = FALSE;
|
g_free (result);
|
||||||
|
result = g_strdup ("0");
|
||||||
/* clear flag */
|
}
|
||||||
flags &= ~fl->value;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tmp = g_strconcat (result, (first ? "" : "+"), fl->value_name, NULL);
|
||||||
|
g_free (result);
|
||||||
|
result = tmp;
|
||||||
|
first = FALSE;
|
||||||
|
|
||||||
|
/* clear flag */
|
||||||
|
flags &= ~fl->value;
|
||||||
}
|
}
|
||||||
g_type_class_unref (klass);
|
g_type_class_unref (klass);
|
||||||
|
|
||||||
|
|
|
@ -447,6 +447,31 @@ GST_START_TEST (test_serialize_flags)
|
||||||
|
|
||||||
GST_END_TEST;
|
GST_END_TEST;
|
||||||
|
|
||||||
|
GST_START_TEST (test_serialize_flags_invalid)
|
||||||
|
{
|
||||||
|
GValue value = { 0 };
|
||||||
|
gchar *string;
|
||||||
|
|
||||||
|
g_value_init (&value, GST_TYPE_SEEK_FLAGS);
|
||||||
|
|
||||||
|
/* Invalid value */
|
||||||
|
g_value_set_flags (&value, 1 << 20);
|
||||||
|
ASSERT_CRITICAL (string = gst_value_serialize (&value));
|
||||||
|
fail_if (string == NULL, "could not serialize invalid flags");
|
||||||
|
fail_unless (strcmp (string, "0") == 0,
|
||||||
|
"resulting value is %s, not 0, for invalid flags", string);
|
||||||
|
g_free (string);
|
||||||
|
|
||||||
|
/* Valid & invalid value */
|
||||||
|
g_value_set_flags (&value, GST_SEEK_FLAG_FLUSH | 1 << 20);
|
||||||
|
ASSERT_CRITICAL (string = gst_value_serialize (&value));
|
||||||
|
fail_if (string == NULL, "could not serialize invalid flags");
|
||||||
|
fail_unless (strcmp (string, "0") == 0,
|
||||||
|
"resulting value is %s, not 0, for invalid flags", string);
|
||||||
|
g_free (string);
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_END_TEST;
|
||||||
|
|
||||||
GST_START_TEST (test_deserialize_flags)
|
GST_START_TEST (test_deserialize_flags)
|
||||||
{
|
{
|
||||||
|
@ -3937,6 +3962,7 @@ gst_value_suite (void)
|
||||||
tcase_add_test (tc_chain, test_deserialize_bitmask);
|
tcase_add_test (tc_chain, test_deserialize_bitmask);
|
||||||
tcase_add_test (tc_chain, test_deserialize_array);
|
tcase_add_test (tc_chain, test_deserialize_array);
|
||||||
tcase_add_test (tc_chain, test_serialize_flags);
|
tcase_add_test (tc_chain, test_serialize_flags);
|
||||||
|
tcase_add_test (tc_chain, test_serialize_flags_invalid);
|
||||||
tcase_add_test (tc_chain, test_deserialize_flags);
|
tcase_add_test (tc_chain, test_deserialize_flags);
|
||||||
tcase_add_test (tc_chain, test_serialize_deserialize_format_enum);
|
tcase_add_test (tc_chain, test_serialize_deserialize_format_enum);
|
||||||
tcase_add_test (tc_chain, test_serialize_deserialize_value_array);
|
tcase_add_test (tc_chain, test_serialize_deserialize_value_array);
|
||||||
|
|
Loading…
Reference in a new issue