Skip to content

Commit

Permalink
Make log mutex visible
Browse files Browse the repository at this point in the history
  • Loading branch information
jjnicola committed Apr 30, 2020
1 parent 456f409 commit bb67118
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [20.4] (unreleased)
## [20.8] (unreleased)

### Added
- Add nvti_get_tag() [#285](https://github.com/greenbone/gvm-libs/pull/285)
Expand All @@ -16,11 +16,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Add function to set and get the NVT QoD. [#321](https://github.com/greenbone/gvm-libs/pull/321)
- Add unit tests for networking.c port list functions. [#325](https://github.com/greenbone/gvm-libs/pull/325)
- Add gmp_start_task_ext_c. [#327](https://github.com/greenbone/gvm-libs/pull/327)
- Make log mutex visible. [#328](https://github.com/greenbone/gvm-libs/pull/328)

### Fixed
- Fix is_cidr_block(). [#322](https://github.com/greenbone/gvm-libs/pull/322)

[20.4]: https://github.com/greenbone/gvm-libs/compare/gvm-libs-11.0...master
[20.8]: https://github.com/greenbone/gvm-libs/compare/gvm-libs-11.0...master

## [11.0.1] (unreleased)

Expand Down
2 changes: 1 addition & 1 deletion base/logging.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ gvm_log_silent (const char *log_domain, GLogLevelFlags log_level,
return;
}

static GMutex *logger_mutex = NULL;
GMutex *logger_mutex = NULL;

/**
* @brief Initialize logger_mutex mutex if it was not done before.
Expand Down

0 comments on commit bb67118

Please sign in to comment.