diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-10 11:49:41 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-10 13:39:16 +0100 |
commit | e38307c4c0b16c733d52f5b6b8ff68136234c0cc (patch) | |
tree | 4ff91ba49adc4a851dfe2f5abe24403471000e1f /vcl/generic | |
parent | b2273b106384fbf22d35c70c50845f6126805443 (diff) |
coverity#708898 Unused pointer value
Change-Id: I2097507b223d45c880c25d51c47f1d347055db40
Diffstat (limited to 'vcl/generic')
-rw-r--r-- | vcl/generic/fontmanager/parseAFM.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/generic/fontmanager/parseAFM.cxx b/vcl/generic/fontmanager/parseAFM.cxx index 4e3469799a08..4219615e57c5 100644 --- a/vcl/generic/fontmanager/parseAFM.cxx +++ b/vcl/generic/fontmanager/parseAFM.cxx @@ -611,7 +611,7 @@ static int parseCharWidths( FileInputStream* fp, int* cwi) break; case XYWIDTH: /* PROBLEM: Should be no Y-WIDTH when doing "quick & dirty" */ - token(fp,tokenlen); keyword = token(fp,tokenlen); /* eat values */ + token(fp,tokenlen); token(fp,tokenlen); /* eat values */ error = parseError; break; case CODEHEX: @@ -637,11 +637,11 @@ static int parseCharWidths( FileInputStream* fp, int* cwi) token(fp,tokenlen); break; case CHARBBOX: - token(fp,tokenlen); keyword = token(fp,tokenlen); - token(fp,tokenlen); keyword = token(fp,tokenlen); + token(fp,tokenlen); token(fp,tokenlen); + token(fp,tokenlen); token(fp,tokenlen); break; case LIGATURE: - token(fp,tokenlen); keyword = token(fp,tokenlen); + token(fp,tokenlen); token(fp,tokenlen); break; case VVECTOR: token(fp,tokenlen); /*eat token*/ |