Fix yaz-marcdump segfault YAZ-801
[yaz-moved-to-github.git] / src / marcdisp.c
index 85acb07..f03d70f 100644 (file)
@@ -1468,7 +1468,7 @@ void yaz_marc_write_using_libxml2(yaz_marc_t mt, int enable)
 int yaz_marc_check_marc21_coding(const char *charset,
                                  const char *marc_buf, int sz)
 {
 int yaz_marc_check_marc21_coding(const char *charset,
                                  const char *marc_buf, int sz)
 {
-    if ((!yaz_matchstr(charset, "MARC8?") ||
+    if (charset && (!yaz_matchstr(charset, "MARC8?") ||
          !yaz_matchstr(charset, "MARC8"))  && marc_buf && sz > 25
         && marc_buf[9] == 'a')
         return 1;
          !yaz_matchstr(charset, "MARC8"))  && marc_buf && sz > 25
         && marc_buf[9] == 'a')
         return 1;