Skip to content

Commit

Permalink
Merge pull request #58 from kraptor/master
Browse files Browse the repository at this point in the history
Remove the access to entities 'checked' private symbol for libxml2 2.11.0
  • Loading branch information
dajobe authored May 31, 2023
2 parents 79beaf9 + 4dbc4c1 commit ac91439
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/raptor_libxml.c
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,11 @@ raptor_libxml_getEntity(void* user_data, const xmlChar *name)

ret->owner = 1;

#if LIBXML_VERSION >= 20627
#if LIBXML_VERSION >= 20627 && LIBXML_VERSION < 21100
/* Checked field was released in 2.6.27 on 2006-10-25
* http://git.gnome.org/browse/libxml2/commit/?id=a37a6ad91a61d168ecc4b29263def3363fff4da6
*
* and was later removed in version 2.11.0
*/

/* Mark this entity as having been checked - never do this again */
Expand Down

0 comments on commit ac91439

Please sign in to comment.