forked from soutade/libgourou
Fix an error in hashNode : a tag can define multiple xml namespaces
This commit is contained in:
parent
8881a58c95
commit
460f452783
|
@ -40,7 +40,7 @@
|
|||
#define ACS_SERVER "http://adeactivate.adobe.com/adept"
|
||||
#endif
|
||||
|
||||
#define LIBGOUROU_VERSION "0.2.1"
|
||||
#define LIBGOUROU_VERSION "0.2.2"
|
||||
|
||||
namespace gourou
|
||||
{
|
||||
|
|
|
@ -132,7 +132,8 @@ namespace gourou
|
|||
ns = attrName.substr(attrName.find(':')+1);
|
||||
|
||||
nsHash[ns] = ait->value();
|
||||
break;
|
||||
// Don't break here because we may multiple xmlns definitions
|
||||
// break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user