Skip to content
Snippets Groups Projects
Commit 2f091d9c authored by Federico Vaga's avatar Federico Vaga
Browse files

Merge branch 'release/v1.1.1' into master

parents 18b1a403 dffe29dc
No related merge requests found
Pipeline #562 failed with stages
in 0 seconds
...@@ -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
================== ==================
......
...@@ -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
......
...@@ -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;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment