summaryrefslogtreecommitdiff
path: root/src/config_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/config_file.c')
-rw-r--r--src/config_file.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/config_file.c b/src/config_file.c
index 36f78563b..39e9ff841 100644
--- a/src/config_file.c
+++ b/src/config_file.c
@@ -905,7 +905,6 @@ static char *reader_readline(struct reader *reader, bool skip_whitespace)
if (GIT_ALLOC_OVERFLOW_ADD(line_len, 1) ||
(line = git__malloc(line_len + 1)) == NULL) {
- giterr_set_oom();
return NULL;
}
@@ -1620,7 +1619,6 @@ static char *fixup_line(const char *ptr, int quote_count)
if (GIT_ALLOC_OVERFLOW_ADD(ptr_len, 1) ||
(str = git__malloc(ptr_len + 1)) == NULL) {
- giterr_set_oom();
return NULL;
}