mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
validate: Avoid dereferencing NULL pointer
CID: 1461266
This commit is contained in:
parent
fadde5cfb9
commit
69d5202788
1 changed files with 1 additions and 1 deletions
|
@ -417,7 +417,7 @@ GES_START_VALIDATE_ACTION (_edit)
|
||||||
|
|
||||||
REPORT_UNLESS (GST_CLOCK_TIME_IS_VALID (position), beach,
|
REPORT_UNLESS (GST_CLOCK_TIME_IS_VALID (position), beach,
|
||||||
"Invalid frame number '%" G_GINT64_FORMAT "': %s", fposition,
|
"Invalid frame number '%" G_GINT64_FORMAT "': %s", fposition,
|
||||||
err->message);
|
err ? err->message : "Unknown");
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_structure_get_int (action->structure, "new-layer-priority",
|
gst_structure_get_int (action->structure, "new-layer-priority",
|
||||||
|
|
Loading…
Reference in a new issue