Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .current_gitmodules

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/markdown_check_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
{
"pattern": "^http://www.swig.org"
}
]
]
}
2 changes: 1 addition & 1 deletion .github/workflows/slc_cd.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/slc_cd_self_check.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/slc_cd_upload_to_release.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/slc_ci.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/slc_ci_build_slc.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/slc_ci_check_for_build.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/slc_ci_prepare_test_container.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/slc_ci_self_check.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/slc_ci_test_slc.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/slc_nightly.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/slc_nightly_self_check.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions doc/changes/changes-20200921.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ This release introduces the new standard-flavor for Exasol 7.0+. Additionally, i
* [script-languages-release@#23](https://github.com/exasol/script-languages-release/issues/70): Pin azure-storage to version 0.36.0 until it is clear how we handle the deprecation with version 0.37.0

* Exaslct:
* [script-languages@#109](https://github.com/exasol/script-languages/pull/109): Fix bug in exaslct upload command
* [script-languages@#77](https://github.com/exasol/script-languages/issues/77): Handle tar return code during export command to detect potentially failed exports
* [script-languages@#109](https://github.com/exasol/script-languages/pull/109): Fix bug in exaslct upload command <!-- markdown-link-check-disable-line -->
* [script-languages@#77](https://github.com/exasol/script-languages/issues/77): Handle tar return code during export command to detect potentially failed exports <!-- markdown-link-check-disable-line -->
* [script-languages-release@#60](https://github.com/exasol/script-languages-release/pull/60): Handle multiple lines at once in LogHandlers in exaslct to fix some bugs on MacOSx (but MacOSx is still highly experimental)

## Features / Enhancements
Expand Down
5 changes: 4 additions & 1 deletion doc/changes/changes_11.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,15 @@ n/a
- #1460: Updated openjdk dependency
- #1470: Updated "tzdata"
- #1480: Updated "ca-certificates"
- #1484: Updated exaslsct, slc-ci & slc-ci-setup

## Bugs
## Bugfixes

- Added workaround for #1435: Pining packaging Python module to version 25.0
- #1438: Fixed 'standard-EXASOL-all' flavor: trivy 0.69.3 not found
- #1449: Fixed 'standard-EXASOL-all' flavor: Prevent upgrade to R 4.6.0
- #1482: Added tools.pip section to conda template flavors


## Doc

Expand Down
3 changes: 2 additions & 1 deletion exaudfclient/exaudfclient.cc
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ int main(int argc, char **argv) {
// }
DBGMSG(cerr, "Load libexaudflib");
DBGVAR(cerr, libexaudflibPath);
handle = dlmopen(LM_ID_NEWLM, libexaudflibPath.c_str(), RTLD_NOW);
void* handle = dlmopen(LM_ID_NEWLM, libexaudflibPath.c_str(), RTLD_NOW);
set_exaudflib_handle(handle);
Comment thread
tomuben marked this conversation as resolved.
// handle = dlopen(libexaudflibPath.c_str(), RTLD_NOW);

if (!handle) {
Expand Down
Loading
Loading