Another minor correction to DVB string processing.
This commit is contained in:
parent
f3fa5d2a86
commit
6a2959ecda
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ dvb_get_string(char *dst, size_t dstlen, const uint8_t *src, size_t srclen, char
|
|||
/* Check custom conversion */
|
||||
while (conv && conv->func) {
|
||||
if (conv->type == src[0])
|
||||
return conv->func(dst, &dstlen, src+1, srclen-1);
|
||||
return conv->func(dst, &dstlen, src, srclen);
|
||||
conv++;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue