diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-09-13 20:57:56 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-09-22 09:11:00 -0700 |
commit | a481cdc13d7bde8b12ef26b01b8c6722373ce0da (patch) | |
tree | e923aadfa570b0ff021552db0905edcfef5bbfb1 | |
parent | d9c77a27da83d7f00254edd405406326254faae2 (diff) | |
download | subsurface-a481cdc13d7bde8b12ef26b01b8c6722373ce0da.tar.gz |
core: don't write pressure samples with "no sensor"
This has led to broken XML files, don't do it.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
-rw-r--r-- | core/save-git.c | 3 | ||||
-rw-r--r-- | core/save-xml.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/core/save-git.c b/core/save-git.c index 6bd237a8b..fc6567950 100644 --- a/core/save-git.c +++ b/core/save-git.c @@ -258,6 +258,9 @@ static void save_sample(struct membuffer *b, struct sample *sample, struct sampl pressure_t p = sample->pressure[idx]; int sensor = sample->sensor[idx]; + if (sensor == NO_SENSOR) + continue; + if (!p.mbar) continue; diff --git a/core/save-xml.c b/core/save-xml.c index a82fcef4b..f35831461 100644 --- a/core/save-xml.c +++ b/core/save-xml.c @@ -256,6 +256,9 @@ static void save_sample(struct membuffer *b, struct sample *sample, struct sampl pressure_t p = sample->pressure[idx]; int sensor = sample->sensor[idx]; + if (sensor == NO_SENSOR) + continue; + if (!p.mbar) continue; |