Commit eda78c8b authored by Paul B Mahol's avatar Paul B Mahol

avcodec/xpmdec: make convert function more picky about its input

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 5dab7b91
...@@ -185,15 +185,16 @@ static const ColorEntry color_table[] = { ...@@ -185,15 +185,16 @@ static const ColorEntry color_table[] = {
{ "YellowGreen", 0xFF9ACD32 } { "YellowGreen", 0xFF9ACD32 }
}; };
static int convert(uint8_t x) static unsigned convert(uint8_t x)
{ {
if (x >= 'a') { if (x >= 'a' && x <= 'f')
x -= 87; x -= 87;
} else if (x >= 'A') { else if (x >= 'A' && x <= 'F')
x -= 55; x -= 55;
} else { else if (x >= '0' && x <= '9')
x -= '0'; x -= '0';
} else
x = 0;
return x; return x;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment