int determine_encoding(FILE* f)
{
char first[2];
+ int read;
- fread(first, 1, 2, f);
- if ((first[0] == '0') && (first[1] == ' ')) {
+ read = fread(first, 1, 2, f);
+ if (read != 2) {
+ gedcom_warning(_("Error reading from input file: %s"), strerror(errno));
+ return ONE_BYTE;
+ }
+ else if ((first[0] == '0') && (first[1] == ' ')) {
gedcom_debug_print(_("One-byte encoding"));
- fseek(f, 0, 0);
+ if (fseek(f, 0, 0) != 0)
+ gedcom_warning(_("Error positioning input file: %s"), strerror(errno));
return ONE_BYTE;
}
else if ((first[0] == '\0') && (first[1] == '0'))
{
gedcom_debug_print(_("Two-byte encoding, high-low"));
- fseek(f, 0, 0);
+ if (fseek(f, 0, 0) != 0)
+ gedcom_warning(_("Error positioning input file: %s"), strerror(errno));
return TWO_BYTE_HILO;
}
else if ((first[0] == '\xFE') && (first[1] == '\xFF'))
else if ((first[0] == '0') && (first[1] == '\0'))
{
gedcom_debug_print(_("Two-byte encoding, low-high"));
- fseek(f, 0, 0);
+ if (fseek(f, 0, 0) != 0)
+ gedcom_warning(_("Error positioning input file: %s"), strerror(errno));
return TWO_BYTE_LOHI;
}
else if ((first[0] == '\xFF') && (first[1] == '\xFE'))
}
else {
gedcom_warning(_("Unknown encoding, falling back to one-byte"));
- fseek(f, 0, 0);
+ if (fseek(f, 0, 0) != 0)
+ gedcom_warning(_("Error positioning input file: %s"), strerror(errno));
return ONE_BYTE;
}
}
ENCODING enc;
int result = 1;
FILE* file;
+ char *locale, *save_locale, *save_textdom;
+
+ locale = setlocale(LC_ALL, NULL);
+ if (! locale) {
+ gedcom_error(_("Could not retrieve locale information"));
+ return result;
+ }
+
+ save_locale = strdup(locale);
+ if (! save_locale) {
+ MEMORY_ERROR;
+ return result;
+ }
+
+ save_textdom = textdomain(NULL);
+ if (!save_textdom) {
+ gedcom_error(_("Could not retrieve locale domain: %s"), strerror(errno));
+ return result;
+ }
- char *save_locale = strdup(setlocale(LC_ALL, NULL));
- char *save_textdom = textdomain(NULL);
- setlocale(LC_ALL, "");
- bindtextdomain(PACKAGE, LOCALEDIR);
- bind_textdomain_codeset(PACKAGE, INTERNAL_ENCODING);
- textdomain(PACKAGE);
+ if (! setlocale(LC_ALL, "")
+ || ! bindtextdomain(PACKAGE, LOCALEDIR)
+ || ! bind_textdomain_codeset(PACKAGE, INTERNAL_ENCODING)
+ || ! textdomain(PACKAGE)) {
+ gedcom_error(_("Could not set locale: %s"), strerror(errno));
+ return result;
+ }
if (!init_called) {
gedcom_error(_("Internal error: GEDCOM parser not initialized"));
line_no = 1;
file = fopen(file_name, "r");
if (!file) {
- gedcom_error(_("Could not open file '%s'"), file_name);
+ gedcom_error(_("Could not open file '%s': %s"),
+ file_name, strerror(errno));
}
else {
init_encodings();
}
}
- textdomain(save_textdom);
- setlocale(LC_ALL, save_locale);
+ if (! textdomain(save_textdom)
+ || ! setlocale(LC_ALL, save_locale)) {
+ gedcom_error(_("Could not restore locale: %s"), strerror(errno));
+ return result;
+ }
free(save_locale);
return result;
}
/* Make sure that the 'string' member always contains a valid string */
if (!xr->xref.string)
xr->xref.string = strdup("");
+ if (!xr->xref.string) MEMORY_ERROR;
xr->xref.object = NULL;
xr->defined_type = XREF_NONE;
xr->used_type = XREF_NONE;
struct xref_node *make_xref_node()
{
struct xref_node *xr = (struct xref_node *)malloc(sizeof(struct xref_node));
- xr->xref.string = NULL;
- clear_xref_node(xr);
+ if (xr) {
+ xr->xref.string = NULL;
+ clear_xref_node(xr);
+ }
+ else
+ MEMORY_ERROR;
return xr;
}
else
/* Only register initially (if xrefs is still NULL) */
/* So that it is only registered once */
- atexit(cleanup_xrefs);
+ if (atexit(cleanup_xrefs) != 0) {
+ gedcom_warning(_("Could not register xref cleanup function"));
+ }
xrefs = hash_create(HASHCOUNT_T_MAX, NULL, NULL);
hash_set_allocator(xrefs, xref_alloc, xref_free, NULL);
}
}
else {
char *key = strdup(raw_value);
- xr = make_xref_node();
- xr->xref.type = xref_type;
- free(xr->xref.string);
- xr->xref.string = strdup(raw_value);
- hash_alloc_insert(xrefs, key, xr);
+ if (key) {
+ xr = make_xref_node();
+ xr->xref.type = xref_type;
+ if (xr->xref.string)
+ free(xr->xref.string);
+ xr->xref.string = strdup(raw_value);
+ if (! xr->xref.string) MEMORY_ERROR;
+ hash_alloc_insert(xrefs, key, xr);
+ }
+ else
+ MEMORY_ERROR;
}
if (ctxt == XREF_DEFINED && xr->defined_type == XREF_NONE) {