Add missing initializer which is needed in an unlikely error case.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@167 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
This commit is contained in:
behlendo 2008-11-04 22:24:55 +00:00
parent b07335c1a7
commit b02e9b2415

View File

@ -642,7 +642,7 @@ spl_debug_vmsg(spl_debug_limit_state_t *cdls, int subsys, int mask,
const char *format1, va_list args, const char *format2, ...) const char *format1, va_list args, const char *format2, ...)
{ {
struct trace_cpu_data *tcd = NULL; struct trace_cpu_data *tcd = NULL;
struct spl_debug_header header; struct spl_debug_header header = { 0, };
struct trace_page *tage; struct trace_page *tage;
/* string_buf is used only if tcd != NULL, and is always set then */ /* string_buf is used only if tcd != NULL, and is always set then */
char *string_buf = NULL; char *string_buf = NULL;