summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorHeiko Voigt <hvoigt@hvoigt.net>2013-05-11 13:19:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-07-12 16:34:57 (GMT)
commitdbb9a8125542be4d57bc71b6d5baf81c7409a68b (patch)
tree0a53564f29b0b80063f104e7de92e0c6d2baab9e /config.c
parentca4b5de28bad7d50b882794124ca4e57044a1cba (diff)
downloadgit-dbb9a8125542be4d57bc71b6d5baf81c7409a68b.zip
git-dbb9a8125542be4d57bc71b6d5baf81c7409a68b.tar.gz
git-dbb9a8125542be4d57bc71b6d5baf81c7409a68b.tar.bz2
config: drop cf validity check in get_next_char()
The global variable cf is set with an initialized value in all codepaths before calling this function. The complete call graph looks like this: git_config_from_file -> do_config_from -> git_parse_file -> get_next_char -> get_value -> get_next_char -> parse_value -> get_next_char -> get_base_var -> get_next_char -> get_extended_base_var -> get_next_char The variable is initialized in do_config_from. Signed-off-by: Heiko Voigt <hvoigt@hvoigt.net> Acked-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.c')
-rw-r--r--config.c29
1 files changed, 13 insertions, 16 deletions
diff --git a/config.c b/config.c
index f0494f3..046642b 100644
--- a/config.c
+++ b/config.c
@@ -169,26 +169,23 @@ int git_config_from_parameters(config_fn_t fn, void *data)
static int get_next_char(void)
{
int c;
- FILE *f;
+ FILE *f = cf->f;
- c = '\n';
- if (cf && ((f = cf->f) != NULL)) {
+ c = fgetc(f);
+ if (c == '\r') {
+ /* DOS like systems */
c = fgetc(f);
- if (c == '\r') {
- /* DOS like systems */
- c = fgetc(f);
- if (c != '\n') {
- ungetc(c, f);
- c = '\r';
- }
- }
- if (c == '\n')
- cf->linenr++;
- if (c == EOF) {
- cf->eof = 1;
- c = '\n';
+ if (c != '\n') {
+ ungetc(c, f);
+ c = '\r';
}
}
+ if (c == '\n')
+ cf->linenr++;
+ if (c == EOF) {
+ cf->eof = 1;
+ c = '\n';
+ }
return c;
}