mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
examples/element_declarations.c: Simplify first call to stackPushMalloc
.. where stackTop is NULL anyway
This commit is contained in:
parent
0ebca2b10f
commit
0b424cb9ae
1 changed files with 1 additions and 2 deletions
|
@ -142,8 +142,7 @@ dumpContentModelElement(const XML_Content *model, unsigned level,
|
|||
static bool
|
||||
dumpContentModel(const XML_Char *name, const XML_Content *root) {
|
||||
printf("Element \"%" XML_FMT_STR "\":\n", name);
|
||||
Stack *stackTop = NULL;
|
||||
stackTop = stackPushMalloc(stackTop, root, 1);
|
||||
Stack *stackTop = stackPushMalloc(NULL, root, 1);
|
||||
if (! stackTop) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue