diff options
author | Peter Huewe <PeterHuewe@gmx.de> | 2013-10-30 23:46:55 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-06 23:08:15 +0400 |
commit | 2e59688b755c3ad72103b909eeaea388a7cdab0b (patch) | |
tree | 4a11c75c0677f25a10fef602e30dfd9d037073ac /Documentation | |
parent | 9bf4d6c3c302830f7d7ffec5f6f12948e2f53c9a (diff) | |
download | linux-2e59688b755c3ad72103b909eeaea388a7cdab0b.tar.xz |
tpm/tpm_ppi: Do not compare strcmp(a,b) == -1
commit 747d35bd9bb4ae6bd74b19baa5bbe32f3e0cee11 upstream.
Depending on the implementation strcmp might return the difference between
two strings not only -1,0,1 consequently
if (strcmp (a,b) == -1)
might lead to taking the wrong branch
-> compare with < 0 instead,
which in any case is more canonical.
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation')
0 files changed, 0 insertions, 0 deletions