Gitweb links:
...log
http://git.netsurf-browser.org/libparserutils.git/shortlog/96cdd0ff114299...
...commit
http://git.netsurf-browser.org/libparserutils.git/commit/96cdd0ff114299f5...
...tree
http://git.netsurf-browser.org/libparserutils.git/tree/96cdd0ff114299f520...
The branch, master has been updated
via 96cdd0ff114299f520e76538ab8fde39358b87f9 (commit)
from 010c5f5b3c3db4c07c19e706c9a70c886b614497 (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 -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/libparserutils.git/commit/?id=96cdd0ff1142...
commit 96cdd0ff114299f520e76538ab8fde39358b87f9
Author: Daniel Silverstone <dsilvers(a)digital-scurf.org>
Commit: Daniel Silverstone <dsilvers(a)digital-scurf.org>
(buffer): Initialise error to OK
Signed-off-by: Daniel Silverstone <dsilvers(a)digital-scurf.org>
diff --git a/src/utils/buffer.c b/src/utils/buffer.c
index b568948..4b68923 100644
--- a/src/utils/buffer.c
+++ b/src/utils/buffer.c
@@ -145,7 +145,7 @@ parserutils_error parserutils_buffer_appendv(parserutils_buffer
*buffer,
size_t count, ...)
{
va_list ap;
- parserutils_error error;
+ parserutils_error error = PARSERUTILS_OK;
const uint8_t *data;
size_t len;
-----------------------------------------------------------------------
Summary of changes:
src/utils/buffer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/utils/buffer.c b/src/utils/buffer.c
index b568948..4b68923 100644
--- a/src/utils/buffer.c
+++ b/src/utils/buffer.c
@@ -145,7 +145,7 @@ parserutils_error parserutils_buffer_appendv(parserutils_buffer
*buffer,
size_t count, ...)
{
va_list ap;
- parserutils_error error;
+ parserutils_error error = PARSERUTILS_OK;
const uint8_t *data;
size_t len;
--
Lexer/parser utility functions