Skip to content

Commit

Permalink
v9.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
balena-ci authored and VersionBot committed Jan 19, 2021
1 parent 260f04f commit 3a000d2
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .versionbot/CHANGELOG.yml
@@ -1,3 +1,24 @@
- commits:
- subject: 'Pass strings between methods as std::string instead of char *'
hash: 1ec6a8ffc4c9e138b78210f0db84a9ebd6c9182b
body: |
- Fixes "basic_string::_M_construct null not valid" exception
aborting program, because WCharToUtf8() returned NULL
in some cases, and NULL was being fed to string constructor.
- Fixes memory leak because memory allocated with calloc()
in WCharToUtf8() was not being freed anywhere
- Fixes undefined behavior because GetEnumeratorName() returns
pointer to stack memory, that goes outside of scope while
pointer still is being used.
Closes #381
Closes #382
footer:
Change-type: patch
change-type: patch
author: Floris Bos
version: 9.2.4
date: 2021-01-19T13:27:50.033Z
- commits:
- subject: Support lsblk versions that do no support the pttype column
hash: a6d568bb64e53c0dc3aeb226cbd0b19bbb090671
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/).

# v9.2.4
## (2021-01-19)

* Pass strings between methods as std::string instead of char * [Floris Bos]

# v9.2.3
## (2021-01-19)

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "drivelist",
"version": "9.2.3",
"version": "9.2.4",
"description": "List all connected drives in your computer, in all major operating systems",
"main": "js/index.js",
"homepage": "https://github.com/balena-io-modules/drivelist",
Expand Down

0 comments on commit 3a000d2

Please sign in to comment.