summaryrefslogtreecommitdiffstats
path: root/smtk-import/smartrak.c
diff options
context:
space:
mode:
Diffstat (limited to 'smtk-import/smartrak.c')
-rw-r--r--smtk-import/smartrak.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/smtk-import/smartrak.c b/smtk-import/smartrak.c
index 6b8a1f60c..ba38c6b33 100644
--- a/smtk-import/smartrak.c
+++ b/smtk-import/smartrak.c
@@ -678,8 +678,10 @@ static void smtk_parse_bookmarks(MdbHandle *mdb, struct dive *d, char *dive_idx)
struct event *ev;
table = smtk_open_table(mdb, "Marker", col, bound_values);
- if (!table)
+ if (!table) {
report_error("[smtk-import] Error - Couldn't open table 'Marker', dive %d", d->number);
+ return;
+ }
while (mdb_fetch_row(table)) {
if (same_string(col[0]->bind_ptr, dive_idx)) {
time = lrint(strtod(col[4]->bind_ptr, NULL) * 60);