Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

Commit c887468

Browse files
authored
1.0.0 beta.4 (#7)
1 parent c1f04a2 commit c887468

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the LaunchDarkly C server-side SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [1.0.0-beta.4] - 2019-06-11
6+
### Fixed
7+
- Memory leak when evaluating flags with prerequisites
8+
59
## [1.0.0-beta.3] - 2019-05-17
610
### Added
711
- Completed Doxygen coverage

include/launchdarkly/api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/** @brief The current SDK version string. This value adheres to semantic
99
* versioning and is included in the HTTP user agent sent to LaunchDarkly.
1010
*/
11-
#define LD_SDK_VERSION "1.0.0-beta.3"
11+
#define LD_SDK_VERSION "1.0.0-beta.4"
1212

1313
#ifdef __cplusplus
1414
extern "C" {

src/evaluate.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,8 @@ LDi_checkPrerequisites(struct LDClient *const client,
567567

568568
return EVAL_MEM;
569569
}
570+
571+
LDJSONFree(subevents);
570572
}
571573

572574
if (!LDArrayPush(*events, event)) {

0 commit comments

Comments
 (0)