Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libxml2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
libraries
libxml2
Commits
8e133c9799f0
Commit
8e133c9799f0
authored
17 years ago
by
Daniel Veillard
Browse files
Options
Downloads
Patches
Plain Diff
Release of 2.6.30, Daniel
svn path=/tags/LIBXML2_2_6_30/; revision=3655
parent
03a542c3e5d2
Branches
wild/8e133c9799f0891d00226eb2f94cd7867d9baf67
No related tags found
No related merge requests found
Pipeline
#165
failed
2 years ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+13
-0
13 additions, 0 deletions
NEWS
nanohttp.c
+1
-1
1 addition, 1 deletion
nanohttp.c
with
14 additions
and
1 deletion
NEWS
+
13
−
0
View file @
8e133c97
...
...
@@ -15,6 +15,19 @@
to the SVN at
http://svn.gnome.org/viewcvs/libxml2/trunk/
code base.Here is the list of public releases:
2.6.30: Aug 23 2007:
- Portability: Solaris crash on error handling, windows path fixes
(Roland Schwarz and Rob Richards), mingw build (Roland Schwarz)
- Bugfixes: xmlXPathNodeSetSort problem (William Brack), leak when
reusing a writer for a new document (Dodji Seketeli), Schemas
xsi:nil handling patch (Frank Gross), relative URI build problem
(Patrik Fimml), crash in xmlDocFormatDump, invalid char in comment
detection bug, fix disparity with xmlSAXUserParseMemory, automata
generation for complex regexp counts problems, Schemas IDC import
problems (Frank Gross), xpath predicate evailation error handling
(William Brack)
2.6.29: Jun 12 2007:
- Portability: patches from Andreas Stricke for WinCEi,
fix compilation warnings (William Brack), avoid warnings on Apple OS/X
...
...
This diff is collapsed.
Click to expand it.
nanohttp.c
+
1
−
1
View file @
8e133c97
...
...
@@ -1585,7 +1585,7 @@
if
(
!
strcmp
(
filename
,
"-"
))
fd
=
0
;
else
{
fd
=
open
(
filename
,
O_CREAT
|
O_WRONLY
);
fd
=
open
(
filename
,
O_CREAT
|
O_WRONLY
,
0666
);
if
(
fd
<
0
)
{
xmlNanoHTTPClose
(
ctxt
);
return
(
-
1
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment