| commit | 38310cd8821f8d99bcb4f925c518f250f6c41e43 | [log] [tgz] |
|---|---|---|
| author | Joel Stanley <joel@jms.id.au> | Wed Nov 25 17:32:08 2015 +1030 |
| committer | Joel Stanley <joel@jms.id.au> | Wed Nov 25 17:32:08 2015 +1030 |
| tree | 5708c0e17c9c2134ec4a4331445ba0eac6ebdf97 | |
| parent | 0c88b3cfeabb7e9c1ae1d68467275760ba0419cf [diff] |
apphandler: Remove out of bounds array access
apphandler.C:188:24: warning: array subscript is above array bounds [-Warray-bounds]
tmp_array[3] = '\0';
^
Initalise tmp_array to zero, and avoid this bad access.
Signed-off-by: Joel Stanley <joel@jms.id.au>