about summary refs log tree commit diff stats
path: root/configfile.h
diff options
context:
space:
mode:
authorLukas Fleischer2013-06-04 14:47:53 +0000
committerJason A. Donenfeld2013-08-12 13:14:10 -0600
commit50e70d32f056c20db760328774d27524648fb739 (patch)
treef11c0bfac7b63143523faaa95e713d52a7cc1cf1 /configfile.h
parentadd a note about generating agefile in hook (diff)
downloadcgit-50e70d32f056c20db760328774d27524648fb739.tar.gz
cgit-50e70d32f056c20db760328774d27524648fb739.zip
Use strbuf for reading configuration files
Use struct strbuf from Git instead of fixed-size buffers to remove the
limit on the length of configuration file lines and refactor
read_config_line() to improve readability.

Note that this also fixes a buffer overflow that existed with the
original fixed-size buffer implementation.

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Diffstat (limited to 'configfile.h')
-rw-r--r--configfile.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/configfile.h b/configfile.h index 04235e5..af7ca19 100644 --- a/configfile.h +++ b/configfile.h
@@ -1,6 +1,8 @@
1#ifndef CONFIGFILE_H 1#ifndef CONFIGFILE_H
2#define CONFIGFILE_H 2#define CONFIGFILE_H
3 3
4#include "cgit.h"
5
4typedef void (*configfile_value_fn)(const char *name, const char *value); 6typedef void (*configfile_value_fn)(const char *name, const char *value);
5 7
6extern int parse_configfile(const char *filename, configfile_value_fn fn); 8extern int parse_configfile(const char *filename, configfile_value_fn fn);