summaryrefslogtreecommitdiff
path: root/hwpfilter/source/htags.h
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-06 14:48:27 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-06 15:11:58 +0000
commit5d4b38c4a284d610583a283a6f405d962673ff8f (patch)
tree0af4961e892211a75364e3adc790057e9b685707 /hwpfilter/source/htags.h
parentb4075c9efd229e1ec7b38e821a63e7989ae46c52 (diff)
coverity#707901 Uninitialized scalar field
Change-Id: Ib8d046e279e76a94cf2198ba35bb70d074a3e350
Diffstat (limited to 'hwpfilter/source/htags.h')
-rw-r--r--hwpfilter/source/htags.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hwpfilter/source/htags.h b/hwpfilter/source/htags.h
index 591b2e1b9f3a..3b7006bec586 100644
--- a/hwpfilter/source/htags.h
+++ b/hwpfilter/source/htags.h
@@ -56,9 +56,9 @@ struct OlePicture
int size;
ulong signature;
#ifdef WIN32
- IStorage *pis;
+ IStorage *pis;
#else
- char *pis;
+ char *pis;
#endif
OlePicture(int tsize);
~OlePicture(void);