Summary: | getdata LINCOM doesn't use correct rescaling constants | ||
---|---|---|---|
Product: | [Applications] kst | Reporter: | D. V. Wiebe <dvw> |
Component: | general | Assignee: | kst |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.x | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | getdata-LINCOM-test-case.tar.gz |
Description
D. V. Wiebe
2004-09-29 06:37:58 UTC
Created attachment 7722 [details]
getdata-LINCOM-test-case.tar.gz
The tiny test dirfile I made while trying to figure out what was happening.
CVS commit by arwalker: Fixed index bug. CCMAIL: 90441-done@bugs.kde.org M +1 -1 getdata.c 1.16 --- kdeextragear-2/kst/kst/datasources/dirfile/getdata.c #1.15:1.16 @@ -989,5 +989,5 @@ static int DoIfLincom(struct FormatType if (L->n_infields > 1) { tmpbuf = AllocTmpbuff(return_type, *n_read); - for (i=0; i<L->n_infields; i++) { + for (i=1; i<L->n_infields; i++) { recurse_level++; if (DoField(F, L->in_fields[i], |