diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-02-09 13:40:17 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-09 13:40:17 -0800 |
commit | c2e23914932cdfa254e817c06af064992888d377 (patch) | |
tree | 6c95c5c987bab6814fe7cbb3db17ea63f04d1146 /libdivecomputer.c | |
parent | 3a3cebaabb00ceebf170e8180711901fef8d9e3e (diff) | |
download | subsurface-c2e23914932cdfa254e817c06af064992888d377.tar.gz |
Prevent a tank from looking undefined by mistake
If we have no default cylidner set and get no data about an air tank from
libdivecomputer, our cylinder will look completely empty by mistake.
Always setting some kind of description fixes that.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'libdivecomputer.c')
-rw-r--r-- | libdivecomputer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libdivecomputer.c b/libdivecomputer.c index 6a16eb12d..942b1ec14 100644 --- a/libdivecomputer.c +++ b/libdivecomputer.c @@ -107,6 +107,9 @@ static int parse_gasmixes(device_data_t *devdata, struct dive *dive, dc_parser_t * dive computer, fill in the default tank information (if set) */ fill_default_cylinder(&dive->cylinder[i]); } + /* whatever happens, make sure there is a name for the cylidner */ + if (same_string(dive->cylinder[i].type.description, "")) + dive->cylinder[i].type.description = strdup(translate("gettextFromC", "unknown")); } return DC_STATUS_SUCCESS; } |