Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FMC Software Support
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
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
Projects
FMC Software Support
Commits
2f091d9c
Commit
2f091d9c
authored
4 years ago
by
Federico Vaga
Browse files
Options
Downloads
Plain Diff
Merge branch 'release/v1.1.1' into master
parents
18b1a403
dffe29dc
No related merge requests found
Pipeline
#562
failed with stages
in 0 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.rst
+7
-0
7 additions, 0 deletions
CHANGELOG.rst
distribution/Makefile
+1
-1
1 addition, 1 deletion
distribution/Makefile
tools/lib/ipmifru.c
+1
-1
1 addition, 1 deletion
tools/lib/ipmifru.c
with
9 additions
and
2 deletions
CHANGELOG.rst
+
7
−
0
View file @
2f091d9c
...
@@ -7,6 +7,13 @@
...
@@ -7,6 +7,13 @@
Changelog
Changelog
=========
=========
1.1.1 - 2020-10-27
==================
Bugfix
------
- sw: fix a NULL pointer dereference
1.1.0 - 2020-10-26
1.1.0 - 2020-10-26
==================
==================
...
...
This diff is collapsed.
Click to expand it.
distribution/Makefile
+
1
−
1
View file @
2f091d9c
...
@@ -59,7 +59,7 @@ sources-tar: sources-build
...
@@ -59,7 +59,7 @@ sources-tar: sources-build
sources
:
sources-tar
sources
:
sources-tar
srpm-changelog
:
sources
srpm-changelog
:
sources
$(
eval
$@
_pattern :
=
^
\[
([
0-9]+
\.
[
0-9]+
\.
[
0-9]+
)
\
]\
s
-
\s
([
0-9]
{
4
}
-[0-9]
{
2
}
-[0-9]
{
2
})
$
)
$(
eval
$@
_pattern :
=
^
([
0-9]+
\.
[
0-9]+
\.
[
0-9]+
)
\s
-
\s
([
0-9]
{
4
}
-[0-9]
{
2
}
-[0-9]
{
2
})
$
)
$(
eval
$@
_replace :
=
echo
-e
"
\n
"
\\
*
`
date
--date
=
"
\2
"
"+%a %b %d %Y"
`
"
\1
"
)
$(
eval
$@
_replace :
=
echo
-e
"
\n
"
\\
*
`
date
--date
=
"
\2
"
"+%a %b %d %Y"
`
"
\1
"
)
@cp
-a
$(PKG_SOURCES)/CHANGELOG.rst
$(SOURCES)/CHANGELOG
@cp
-a
$(PKG_SOURCES)/CHANGELOG.rst
$(SOURCES)/CHANGELOG
...
...
This diff is collapsed.
Click to expand it.
tools/lib/ipmifru.c
+
1
−
1
View file @
2f091d9c
...
@@ -13,7 +13,7 @@ static void *fru_alloc(size_t size)
...
@@ -13,7 +13,7 @@ static void *fru_alloc(size_t size)
{
{
void
*
buf
=
malloc
(
size
);
void
*
buf
=
malloc
(
size
);
if
(
!
buf
)
if
(
buf
)
memset
(
buf
,
0
,
size
);
memset
(
buf
,
0
,
size
);
return
buf
;
return
buf
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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