From 6b553b7b42f0a2940c9765b9811e5db44ba8265f Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 5 Dec 2006 09:24:47 +0000 Subject: [PATCH] Deal with NULL profile_path. --- util/zebramap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/zebramap.c b/util/zebramap.c index b075257..96c1623 100644 --- a/util/zebramap.c +++ b/util/zebramap.c @@ -1,4 +1,4 @@ -/* $Id: zebramap.c,v 1.53 2006-09-08 14:41:00 adam Exp $ +/* $Id: zebramap.c,v 1.54 2006-12-05 09:24:47 adam Exp $ Copyright (C) 1995-2006 Index Data ApS @@ -205,7 +205,7 @@ ZebraMaps zebra_maps_open(Res res, const char *base_path, zms->nmem = nmem_create(); zms->no_maps = 0; - zms->tabpath = nmem_strdup(zms->nmem, profile_path); + zms->tabpath = profile_path ? nmem_strdup(zms->nmem, profile_path) : 0; zms->tabroot = 0; if (base_path) zms->tabroot = nmem_strdup(zms->nmem, base_path); -- 1.7.10.4