aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/dive.c7
-rw-r--r--desktop-widgets/divelogexportdialog.cpp2
2 files changed, 5 insertions, 4 deletions
diff --git a/core/dive.c b/core/dive.c
index 20981c48c..d845d8077 100644
--- a/core/dive.c
+++ b/core/dive.c
@@ -3275,11 +3275,12 @@ int split_dive(const struct dive *dive, struct dive **new1, struct dive **new2)
int split_dive_at_time(const struct dive *dive, duration_t time, struct dive **new1, struct dive **new2)
{
int i = 0;
- struct sample *sample = dive->dc.sample;
- *new1 = *new2 = NULL;
if (!dive)
return -1;
+
+ struct sample *sample = dive->dc.sample;
+ *new1 = *new2 = NULL;
while(sample->time.seconds < time.seconds) {
++sample;
++i;
@@ -3670,7 +3671,7 @@ static void delete_divecomputer(struct dive *d, int num)
struct divecomputer *pdc = &d->dc;
for (i = 0; i < num - 1 && pdc; i++)
pdc = pdc->next;
- if (pdc->next) {
+ if (pdc && pdc->next) {
struct divecomputer *dc = pdc->next;
pdc->next = dc->next;
free_dc(dc);
diff --git a/desktop-widgets/divelogexportdialog.cpp b/desktop-widgets/divelogexportdialog.cpp
index e44f2280d..8f192c39e 100644
--- a/desktop-widgets/divelogexportdialog.cpp
+++ b/desktop-widgets/divelogexportdialog.cpp
@@ -377,7 +377,7 @@ void DiveLogExportDialog::export_TeX(const char *filename, const bool selected_o
dive_site *site = dive->dive_site;
QRegExp ct("countrytag: (\\w+)");
QString country;
- if (ct.indexIn(site->notes) >= 0)
+ if (site && ct.indexIn(site->notes) >= 0)
country = ct.cap(1);
else
country = "";