diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-06 16:16:52 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-06 16:35:52 +0000 |
commit | a1630627935f8daad21792787ff91c442b69a527 (patch) | |
tree | 5ee4bd6c38c0192a438087e87a6ce30f389826b1 /vcl/generic | |
parent | be9c3a83b28720492d4e80bd27285344bc696505 (diff) |
coverity#708902 Unused pointer value
Change-Id: Ia8e140da22d67013a1485445a6359aa001a14826
Diffstat (limited to 'vcl/generic')
-rw-r--r-- | vcl/generic/fontmanager/parseAFM.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/generic/fontmanager/parseAFM.cxx b/vcl/generic/fontmanager/parseAFM.cxx index e736a165899b..6d3f2a6c000f 100644 --- a/vcl/generic/fontmanager/parseAFM.cxx +++ b/vcl/generic/fontmanager/parseAFM.cxx @@ -1033,7 +1033,7 @@ static int parsePairKernData( FileInputStream* fp, FontInfo* fi) switch(recognize(keyword,tokenlen)) { case COMMENT: - keyword = linetoken(fp); + linetoken(fp); /*eat token*/ break; case KERNPAIR: if (!(pcount < fi->numOfPairs)) |