This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, thirteen has been updated via 0add8f90ae1d5a15000147df2a86d060a2a89917 (commit) from 83601a06bc8036b21e9b6c6911c8096e35bd443d (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 0add8f90ae1d5a15000147df2a86d060a2a89917 Author: Michael Tremer michael.tremer@ipfire.org Date: Mon Nov 26 00:01:28 2012 +0100
libsmooth: findkey: Empty target string if key could not be found.
-----------------------------------------------------------------------
Summary of changes: src/install+setup/libsmooth/varval.c | 3 +++ 1 file changed, 3 insertions(+)
Difference in files: diff --git a/src/install+setup/libsmooth/varval.c b/src/install+setup/libsmooth/varval.c index 9a64365..d127890 100644 --- a/src/install+setup/libsmooth/varval.c +++ b/src/install+setup/libsmooth/varval.c @@ -151,6 +151,9 @@ int findkey(struct keyvalue *head, char *key, char *value) cur = cur->next; }
+ // Empty value if we could not find key. + value[0] = '\0'; + return 0; }
hooks/post-receive -- IPFire 2.x development tree