Hi,
On Wed, Dec 19, 2018 at 03:19:37PM +0100, Victor Toso wrote:
> From: Victor Toso
>
> In the current code, output should never be negative but the check
> exists after we use the variable as index. Make the check earlier.
>
> Found by coverity:
> | check_after_sink: You might be using vari
From: Victor Toso
In the current code, output should never be negative but the check
exists after we use the variable as index. Make the check earlier.
Found by coverity:
| check_after_sink: You might be using variable "output" before
| verifying that it is >= 0.
Changes in v2:
- Move overf