dtdocbook: Resolve uninitialized warnings
This commit is contained in:
committed by
Jon Trulson
parent
207253b401
commit
1227dabec4
@@ -103,7 +103,7 @@ static char *br_help_msg[] = {
|
|||||||
void
|
void
|
||||||
Browse(void)
|
Browse(void)
|
||||||
{
|
{
|
||||||
char buf[256], *cmd, **av, **sv, *cmapfile, *sdatafile;
|
char buf[256], *cmd = NULL, **av, **sv, *cmapfile, *sdatafile;
|
||||||
char *Prompt;
|
char *Prompt;
|
||||||
Element_t *ce; /* current element */
|
Element_t *ce; /* current element */
|
||||||
Element_t *e;
|
Element_t *e;
|
||||||
|
|||||||
@@ -306,7 +306,7 @@ int *flagp
|
|||||||
char *ret;
|
char *ret;
|
||||||
char *br;
|
char *br;
|
||||||
char *ender;
|
char *ender;
|
||||||
int parno;
|
int parno = 0;
|
||||||
int flags;
|
int flags;
|
||||||
|
|
||||||
*flagp = HASWIDTH; /* Tentatively. */
|
*flagp = HASWIDTH; /* Tentatively. */
|
||||||
|
|||||||
Reference in New Issue
Block a user