aboutsummaryrefslogtreecommitdiff
path: root/read_config_file.c
diff options
context:
space:
mode:
authorIan Wienand <ianw@ieee.org>2006-02-16 03:00:00 +0100
committerIan Wienand <ianw@debian.org>2006-02-16 03:00:00 +0100
commite1dd50cdd23a11bf7be6c81b3a2acbe35f19fdea (patch)
tree174d2081c0183035bffee95a9c5780e292f45594 /read_config_file.c
parent5df6269b86c84f9e5d311aeb142cfe85f8db8db8 (diff)
downloadltrace-e1dd50cdd23a11bf7be6c81b3a2acbe35f19fdea.tar.gz
Version 0.3.37.1
* Non-maintainer upload * Start a "friendly takeover" from Juan * Closes: #127503,#280608 -- update man page typos * Closes: #339348 -- fix putenv typo in ltrace.conf * Closes: #257903 -- incorporate variable length args patch * See "upstream" ChangeLog for other changes (mostly warning fixes) * Update README to point to Alioth home: http://ltrace.alioth.debian.org
Diffstat (limited to 'read_config_file.c')
-rw-r--r--read_config_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/read_config_file.c b/read_config_file.c
index e0b8ac2..ddaa742 100644
--- a/read_config_file.c
+++ b/read_config_file.c
@@ -47,7 +47,7 @@ static struct list_of_pt_t {
static struct complete_arg_type
str2type(char ** str) {
struct list_of_pt_t * tmp = &list_of_pt[0];
- struct complete_arg_type pt;
+ struct complete_arg_type pt = {0,0};
if (!strncmp(*str, "string", 6)
&& isdigit((unsigned char)(*str)[6]))