Menu

#2 Typo in high_level_webdav_functions.c ?

open
nobody
None
5
2004-07-21
2004-07-21
Anonymous
No

in high_level_webdav_functions.c :
"local variable 'error' used without having been
initialized".

if((error == xml_tree_create(&tree)) != XT_OK)

should probably be

if((error = xml_tree_create(&tree)) != XT_OK)

Loic.

Discussion


Log in to post a comment.