summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pacman/ini.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/pacman/ini.c b/src/pacman/ini.c
index f4f606b2..7291e971 100644
--- a/src/pacman/ini.c
+++ b/src/pacman/ini.c
@@ -80,13 +80,6 @@ int parse_ini(const char *file, ini_parser_fn cb, void *data)
if(line[0] == '[' && line[line_len - 1] == ']') {
char *name;
- /* only possibility here is a line == '[]' */
- if(line_len <= 2) {
- pm_printf(ALPM_LOG_ERROR, _("config file %s, line %d: bad section name.\n"),
- file, linenum);
- ret = 1;
- goto cleanup;
- }
/* new config section, skip the '[' */
name = strdup(line + 1);
name[line_len - 2] = '\0';