Skip to content
Snippets Groups Projects
Commit 3ce7bdcd authored by Ruben Rodriguez's avatar Ruben Rodriguez
Browse files

Fixed bug in libvirt

parent c27c0a0f
No related branches found
No related tags found
No related merge requests found
......@@ -17,11 +17,28 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
VERSION=1
VERSION=2
EXTERNAL='deb-src http://archive.ubuntu.com/ubuntu yakkety-updates main'
. ./config
#https://www.redhat.com/archives/libvir-list/2016-August/msg00749.html
patch -p1 << EOF
diff --git a/tools/virsh-secret.c b/tools/virsh-secret.c
index 8588f4c..537bdd7 100644
--- a/tools/virsh-secret.c
+++ b/tools/virsh-secret.c
@@ -253,7 +253,7 @@ static bool
cmdSecretGetValue(vshControl *ctl, const vshCmd *cmd)
{
virSecretPtr secret;
- char *base64;
+ char *base64 = NULL;
unsigned char *value;
size_t value_size;
bool ret = false;
EOF
sed '/zfsutils/d' -i debian/control
sed 's/with-storage-zfs/without-storage-zfs/' -i debian/rules
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment