sysutils/bacula15-server: Update to 15.0.3

re: https://www.bacula.org/downloads/Bacula-15.0.3/ReleaseNotes
This commit is contained in:
Dan Langille
2025-07-08 15:37:43 +00:00
parent 775c5fd82b
commit c5b263e5aa
3 changed files with 4 additions and 18 deletions

View File

@@ -1,6 +1,5 @@
PORTNAME= bacula
DISTVERSION= 15.0.2
PORTREVISION= 7
DISTVERSION= 15.0.3
CATEGORIES?= sysutils
MASTER_SITES= SF/bacula/bacula/${DISTVERSION}
PKGNAMEPREFIX?= #

View File

@@ -1,3 +1,3 @@
TIMESTAMP = 1711652567
SHA256 (bacula-15.0.2.tar.gz) = 55515c2a66af9a86b955daea4089378b864d051b2e6e30383bef36e693acea7a
SIZE (bacula-15.0.2.tar.gz) = 6524812
TIMESTAMP = 1751974854
SHA256 (bacula-15.0.3.tar.gz) = 294afd3d2eb9d5b71c3d0e88fdf19eb513bfdb843b28d35c0552e4ae062827a1
SIZE (bacula-15.0.3.tar.gz) = 6539212

View File

@@ -1,13 +0,0 @@
--- src/plugins/fd/bpipe-fd.c.orig 2024-03-22 09:48:41 UTC
+++ src/plugins/fd/bpipe-fd.c
@@ -202,7 +202,9 @@ static bRC freePlugin(bpContext *ctx)
if (!p_ctx) {
return bRC_Error;
}
- bfree_and_null(p_ctx->cmd);
+ if (p_ctx->cmd) {
+ free(p_ctx->cmd); /* free any allocated command string */
+ }
free_and_null_pool_memory(p_ctx->restore_obj_buf);
if (p_ctx->rop_writer) {
restoreobj *rop;