mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 21:16:24 +00:00
value: init flag mask more correctly
This commit is contained in:
parent
45c0831835
commit
4e1699e030
1 changed files with 1 additions and 1 deletions
|
@ -2530,7 +2530,7 @@ gst_value_deserialize_int_helper (gint64 * to, const gchar * s,
|
|||
{
|
||||
gboolean ret = FALSE;
|
||||
gchar *end;
|
||||
guint64 mask = -1;
|
||||
guint64 mask = ~0;
|
||||
|
||||
errno = 0;
|
||||
*to = g_ascii_strtoull (s, &end, 0);
|
||||
|
|
Loading…
Reference in a new issue