-
Notifications
You must be signed in to change notification settings - Fork 1.1k
config review (re-up) #274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
cgzones
commented
Aug 29, 2014
- fix several compiler warnings
- fix several static analyzer warnings
- add some explicit casts
- remove unused function 'AssignIgnore_Global'
Most of this looks good to me. Left a comment on a smaller issue. |
@awiddersheim Thanks for checking |
|
||
|
||
while(node[i]) | ||
{ | ||
XML_NODE chld_node = NULL; | ||
|
||
chld_node = OS_GetElementsbyNode(&xml,node[i]); | ||
chld_node = OS_GetElementsbyNode(xml,node[i]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How was this even working before?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see cgzones@8dce48f
the function's input parameter changed from OS_XML
to OS_XML*
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks 👍