From 91ddbde10d8d8770530c258c1ebdb977ac54be2b Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Mon, 15 Jan 2018 19:28:27 +0100 Subject: [PATCH] spreed-webrtc: fix patch: panic when uuid.NewV4() fails --- srcpkgs/spreed-webrtc/patches/fix-uuid-newv4.patch | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/srcpkgs/spreed-webrtc/patches/fix-uuid-newv4.patch b/srcpkgs/spreed-webrtc/patches/fix-uuid-newv4.patch index 528556c0f7e..43ae60c772b 100644 --- a/srcpkgs/spreed-webrtc/patches/fix-uuid-newv4.patch +++ b/srcpkgs/spreed-webrtc/patches/fix-uuid-newv4.patch @@ -1,12 +1,11 @@ --- ./go/channelling/server/users.go.orig 2018-01-15 14:20:19.997694620 +0100 +++ ./go/channelling/server/users.go 2018-01-15 14:20:41.151902026 +0100 -@@ -456,7 +456,8 @@ func (users *Users) Post(request *http.R +@@ -456,7 +456,7 @@ func (users *Users) Post(request *http.R } // Do this before session validation to avoid timing information. - userid := fmt.Sprintf("%s@%s", uuid.NewV4().String(), users.realm) -+ tmpUuid, _ := uuid.NewV4() -+ userid := fmt.Sprintf("%s@%s", tmpUuid.String(), users.realm) ++ userid := fmt.Sprintf("%s@%s", uuid.Must(uuid.NewV4()).String(), users.realm) // Make sure Sid matches session and is valid. if !users.ValidateSession(snr.Id, snr.Sid) {