Commit e06dd9b6 by Vicent Marti

Fix 'possibly uninitialized variable' warning

parent f7fcb0dd
...@@ -405,7 +405,7 @@ static int packed_parse_oid( ...@@ -405,7 +405,7 @@ static int packed_parse_oid(
const char **buffer_out, const char **buffer_out,
const char *buffer_end) const char *buffer_end)
{ {
reference_oid *ref; reference_oid *ref = NULL;
const char *buffer = *buffer_out; const char *buffer = *buffer_out;
const char *refname_begin, *refname_end; const char *refname_begin, *refname_end;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment