diff options
Diffstat (limited to 'xkbpath.c')
-rw-r--r-- | xkbpath.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -123,7 +123,7 @@ XkbParseIncludeMap(char **str_inout, char **file_rtrn, char **map_rtrn, } else if (str[0] == '(') { - uFree(*extra_data); + free(*extra_data); return False; } else @@ -134,8 +134,8 @@ XkbParseIncludeMap(char **str_inout, char **file_rtrn, char **map_rtrn, tmp = strchr(str, ')'); if ((tmp == NULL) || (tmp[1] != '\0')) { - uFree(*file_rtrn); - uFree(*extra_data); + free(*file_rtrn); + free(*extra_data); return False; } *tmp++ = '\0'; @@ -184,7 +184,7 @@ XkbClearIncludePath(void) { if (includePath[i] != NULL) { - uFree(includePath[i]); + free(includePath[i]); includePath[i] = NULL; } } |