changeset 235:3cb7be7b98a6

Rename a label.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 04 Jan 2020 13:11:56 +0200
parents 1c004e74d0ad
children 609bfc1bd628
files sidinfo.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/sidinfo.c	Sat Jan 04 12:01:45 2020 +0200
+++ b/sidinfo.c	Sat Jan 04 13:11:56 2020 +0200
@@ -1298,7 +1298,7 @@
         {
             THERR("Could not open SLDB '%s': %s\n",
                 setSLDBPath, th_error_str(ret));
-            goto err;
+            goto err1;
         }
 
         THMSG(1, "Reading SLDB (%s format [%s]): %s\n",
@@ -1309,24 +1309,24 @@
         if ((sidSLDB = sidlib_sldb_new()) == NULL)
         {
             THERR("Could not allocate SLDB structure!\n");
-            goto err;
+            goto err1;
         }
 
         if ((ret = sidlib_sldb_read(inFile, sidSLDB)) != THERR_OK)
         {
             THERR("Error parsing SLDB: %d, %s\n",
                 ret, th_error_str(ret));
-            goto err;
+            goto err1;
         }
 
         if ((ret = sidlib_sldb_build_index(sidSLDB)) != THERR_OK)
         {
             THERR("Error building SLDB index: %d, %s.\n",
                 ret, th_error_str(ret));
-            goto err;
+            goto err1;
         }
 
-err:
+err1:
         th_io_close(inFile);
         inFile = NULL;
     }