mxf: Remove useless check

a guint will always smaller or equal to the maximum value it can
contain

CID #206049
This commit is contained in:
Edward Hervey 2014-04-16 16:12:02 +02:00
parent 172c398127
commit fa72b4c870

View file

@ -168,8 +168,6 @@ mxf_ber_encode_size (guint size, guint8 ber[9])
if (size <= 127) {
ber[0] = size;
return 1;
} else if (size > G_MAXUINT) {
return 0;
}
slen = 0;