Nick Wellnhofer
8318b5a634
parser: Fix NULL checks for output arguments
2024-06-09 15:08:43 +02:00
Rosen Penev
f227086380
meson: convert boolean options to feature option
...
Simpler. Seems like they're only disabled by minimum.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2024-06-06 17:13:41 -07:00
Andrew Potter
ed3e53de0e
meson: Pass LIBXML_STATIC in dependency
2024-06-06 22:27:54 +00:00
Nick Wellnhofer
afe8f84514
runtest: Work around broken EUC-JP support in musl iconv
...
Should fix #728 .
2024-06-07 00:02:37 +02:00
Nick Wellnhofer
0cde1b78d6
parser: Fix "Truncated multi-byte sequence" error
...
Don't raise the error if decoding failed.
2024-06-07 00:02:31 +02:00
Nick Wellnhofer
02cbb2b64f
runtest: Suppress undeclared entity errors
2024-06-07 00:02:31 +02:00
Nick Wellnhofer
0d0cb4c2bd
runtest: Check for IBM-1141 encoding handler
...
Should fix #729 .
2024-06-07 00:02:31 +02:00
Nick Wellnhofer
1ae68e40df
python: Fix build with disabled modules
2024-06-06 22:55:15 +02:00
Nick Wellnhofer
15ed75664b
xinclude: Fix warning when building --without-xptr
2024-06-06 22:18:05 +02:00
Nick Wellnhofer
e2919516bc
xmllint: Fix build --with-valid --without-html
2024-06-06 19:28:23 +02:00
Nick Wellnhofer
122b61309f
parser: Fix performance regression when parsing namespaces
...
The namespace hash table didn't reuse deleted buckets, leading to
quadratic behavior.
Also ignore deleted buckets when resizing.
Fixes #726 .
2024-06-06 15:52:09 +02:00
Sadaf Ebrahimi
897c73fe24
Add missing _cplusplus processing clause
2024-06-06 09:40:18 +00:00
Rosen Penev
16d914a9f3
meson: fix compilation with local binaries
...
threads_dep is needed for runtest.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2024-06-03 17:20:10 -07:00
Rosen Penev
4b2f250a5b
meson: don't use dl dependency on old meson
...
dl dependency was introduced with version 0.62.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2024-06-03 14:33:52 -07:00
Rosen Penev
0160127fda
meson: fix usage as a subproject
...
include directories must be passed to that projects can use headers.
Also add override_dependencies to make sure that it's used when
available as a subproject.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2024-06-03 14:33:07 -07:00
Nick Wellnhofer
a7e26707be
parser: Don't overwrite OOM errors in xmlSBuf
2024-06-03 14:04:44 +02:00
Nick Wellnhofer
f0d891585d
entities: Unconst predefined entities
...
Partial revert of commit 63ce5f9a
. For some reason, Chromium and WebKit
set the etype member of predefined entities. This should be fixed first.
2024-06-01 15:41:43 +02:00
Nick Wellnhofer
5198de4b1d
fuzz: Make allocation in xmlBuildQName more likely
...
Limit size of static buffer in fuzzing mode.
2024-05-31 13:42:08 +02:00
Nick Wellnhofer
11cd18d879
valid: Check return value of xmlValidBuildAContentModel
...
Fixes return code in case of malloc failure.
2024-05-31 13:31:09 +02:00
Nick Wellnhofer
ec09909dd3
autotools: Fix pthread detection on FreeBSD
...
pthread_join is defined by libc, so check for pthread_create instead.
Should fix #725 .
2024-05-29 13:47:37 +02:00
Nick Wellnhofer
b7f30bae7b
fuzz: Fix aarch64 build on OSS-Fuzz
2024-05-28 22:52:30 +02:00
Nick Wellnhofer
e349709ae7
build: Remove --with-fexceptions configuration option
2024-05-21 21:07:16 +02:00
Nick Wellnhofer
f524993e70
build: Clean up configuration options
...
Remove run-debug from meson. Fix documentation.
2024-05-21 21:05:32 +02:00
Nick Wellnhofer
11ce63f02b
build: Don't check for isascii
2024-05-21 20:40:30 +02:00
Nick Wellnhofer
6f2a597383
build: Don't check for uint32_t
2024-05-21 20:40:30 +02:00
Nick Wellnhofer
5c9e0ebe71
autotools: Change ICU message
...
Only log non-default actions.
2024-05-21 20:40:28 +02:00
Nick Wellnhofer
54629e0f75
autotools: Remove --with-coverage configuration option
2024-05-21 20:25:23 +02:00
Nick Wellnhofer
e80f27fc81
build: Don't check for inttypes.h
...
This header isn't used.
2024-05-21 18:37:57 +02:00
Nick Wellnhofer
dda69626b9
autotools: Only check for networking headers if required
2024-05-21 18:31:37 +02:00
Nick Wellnhofer
1371d0bda2
Update NEWS
2024-05-21 00:31:02 +02:00
Nick Wellnhofer
bd7cafdbce
meson: Add some TODO comments
2024-05-20 23:59:55 +02:00
Nick Wellnhofer
3018842c07
build: Disable HTTP support by default
2024-05-20 23:59:55 +02:00
Nick Wellnhofer
5b1d7ff0b2
parser: Remove redefinitions for legacy globals
2024-05-20 23:59:55 +02:00
Nick Wellnhofer
e75e878e02
doc: Update and fix documentation
2024-05-20 14:23:39 +02:00
Nick Wellnhofer
9523438ad4
doc: Allow missing author
2024-05-20 14:22:56 +02:00
Nick Wellnhofer
a800e0035c
doc: Allow missing desc if we have a retdesc
...
Allow missing function descriptions if the return value is documented.
2024-05-20 14:22:56 +02:00
Nick Wellnhofer
b47a95fe31
parser: Don't make xmlCtxtErrIO public
2024-05-20 14:22:56 +02:00
Nick Wellnhofer
caa8bb3848
fuzz: Move back to xmlSetExternalEntityLoader
...
xmlParserInputBufferCreateFilenameDefault can't report malloc failures.
2024-05-19 19:39:22 +02:00
Nick Wellnhofer
4fefba4cf6
parser: Rework handling of undeclared entities
...
Throw an error if entity substitution was requested.
Now we only downgrade to a warning if
- XML_PARSE_DTDLOAD wasn't specified, and
- entity aren't substituted or XML_PARSE_NO_XXE was specified.
Should fix #724 .
2024-05-15 17:58:48 +02:00
Nick Wellnhofer
51b5d1e378
fuzz: Don't enable zlib and liblzma with MSan
...
We'd need our own instrumented builds of these libraries.
2024-05-15 16:21:11 +02:00
Nick Wellnhofer
f895af0989
fuzz: Remove OSS-Fuzz timeout option
...
Custom timeouts aren't fully supported on OSS-Fuzz.
2024-05-14 16:08:37 +02:00
Nick Wellnhofer
ec2f68f164
parser: Report malloc failure in xmlNewInputFromFile
2024-05-14 16:04:56 +02:00
Nick Wellnhofer
8d215ac5cc
xpath: Fix quadratic runtime accounting
2024-05-14 15:55:18 +02:00
Nick Wellnhofer
592546267f
threads: Deprecate remaining ThrDef functions
2024-05-14 15:44:50 +02:00
Nick Wellnhofer
b117a912b6
fuzz: Enable xmllint fuzzer on OSS-Fuzz
2024-05-13 13:42:43 +02:00
Nick Wellnhofer
0651ad667c
valid: Report malloc failure after xmlRegExecPushString
2024-05-13 13:08:14 +02:00
Nick Wellnhofer
609d2666fa
Stop defining _REENTRANT
...
This macro is obsolete, see `man feature_test_macros`.
2024-05-13 13:08:14 +02:00
Nick Wellnhofer
b3cb41be8b
fuzz: Add xmllint fuzzer
2024-05-13 12:50:08 +02:00
Nick Wellnhofer
16fb1028a2
reader: Fix error reporting with walker
...
Abort earlier in xmlTextReaderRead if an error was raised.
2024-05-13 12:50:08 +02:00
Nick Wellnhofer
a846719b9c
pattern: Fix memory leak xmlCompileStepPattern
2024-05-13 12:50:08 +02:00