From: Chris B. <buc...@us...> - 2011-09-30 17:10:25
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via b13a39b16ea2fba1afaebf892becba4a75a966cd (commit) from 222f4ea21fcf8fe3ac3058e7d9564dd6cf4e62c4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b13a39b16ea2fba1afaebf892becba4a75a966cd Author: buccella <buc...@li...> Date: Fri Sep 30 13:08:22 2011 -0400 [ 3416055 ] SIGSEGV sometimes does not print provider name ----------------------------------------------------------------------- Summary of changes: diff --git a/ChangeLog b/ChangeLog index c07653e..f74763c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2011-09-30 Chris Buccella <buc...@li...> + * providerDrv.c: + [ 3416055 ] SIGSEGV sometimes does not print provider name + (patch by Klaus Kampf) + * brokerUpc: [ 3414700 ] assocClass ignored for assoc upcalls diff --git a/NEWS b/NEWS index 342b0f6..41e4d80 100644 --- a/NEWS +++ b/NEWS @@ -87,6 +87,7 @@ Changes in 1.3.14 Bugs Fixed: - 3414700 assocClass ignored for assoc upcalls +- 3416055 SIGSEGV sometimes does not print provider name Changes in 1.3.13 ================= diff --git a/contributions.txt b/contributions.txt index 1ba8a38..90663e0 100644 --- a/contributions.txt +++ b/contributions.txt @@ -114,6 +114,7 @@ Klaus Kampf, Novell 06/30/2010 [ 2968599 ] Wrong trace msg for invokeMethod (local interface) 06/09/2011 [ 3047562 ] [patch] Create bzip2 tarballs on "make dist" 09/06/2011 [ 3400114 ] sfcb fails to start with ipv6 disabled +09/30/2011 [ 3416055 ] SIGSEGV sometimes does not print provider name Mike Brasher, Inova ------------------- diff --git a/providerDrv.c b/providerDrv.c index 2d1c188..3ebef6e 100644 --- a/providerDrv.c +++ b/providerDrv.c @@ -887,7 +887,7 @@ getProcess(ProviderInfo * info, ProviderProcess ** proc) info->providerName, currentProc, providerSockets.receive, getInode(providerSockets.receive))); - processName = info->providerName; + processName = strdup(info->providerName); providerProcess = 1; info->proc = *proc; info->pid = currentProc; hooks/post-receive -- SFCB - Small Footprint CIM Broker |