summaryrefslogtreecommitdiffstats
path: root/src/libuemf/upmf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libuemf/upmf.c')
-rw-r--r--src/libuemf/upmf.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/libuemf/upmf.c b/src/libuemf/upmf.c
index 7d6349185..2ba818fa4 100644
--- a/src/libuemf/upmf.c
+++ b/src/libuemf/upmf.c
@@ -21,8 +21,8 @@
/*
File: upmf.c
-Version: 0.0.9
-Date: 25-MAR-2015
+Version: 0.0.10
+Date: 27-APR-2015
Author: David Mathog, Biology Division, Caltech
email: mathog@caltech.edu
Copyright: 2015 David Mathog and California Institute of Technology (Caltech)
@@ -6575,15 +6575,17 @@ int U_PMF_VARPOINTS_get(const char *contents, uint16_t Flags, int Elements, U_PM
}
}
else if(Flags & U_PPF_C){
- for(XFS = YFS = 0.0; Elements; Elements--, pts++){
+ for(XF = YF = 0.0; Elements; Elements--, pts++){
if(!U_PMF_POINT_get(&contents, &XF, &XF, blimit))break; /* this should never happen */
pts->X = XF;
pts->Y = YF;
}
}
else {
- for(XFS = YFS = 0.0; Elements; Elements--, pts++){
- (void) U_PMF_POINTF_get(&contents, &(pts->X), &(pts->Y), blimit);
+ for(XF = YF = 0.0; Elements; Elements--, pts++){
+ (void) U_PMF_POINTF_get(&contents, &XF, &YF, blimit);
+ pts->X = XF;
+ pts->Y = YF;
}
}
if(Elements){ /* some error in the preceding */