dbus-daemon-proxy: add missing return statement#518
Closed
leiflm wants to merge 1 commit intoopenembedded:hardknott-nextfrom
Closed
dbus-daemon-proxy: add missing return statement#518leiflm wants to merge 1 commit intoopenembedded:hardknott-nextfrom
return statement#518leiflm wants to merge 1 commit intoopenembedded:hardknott-nextfrom
Conversation
The missing `return` statement leads to a `SIGABRT`. Signed-off-by: Leif Middelschulte <Leif.Middelschulte@klsmartin.com>
Contributor
|
thanks. change in my testing branch. |
Contributor
|
applied with b5a9b02 |
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jul 25, 2023
- The project uses poetry now, so inherit python_poetry_core - Add python3-asyncio and python3-compression to RDEPENDS Changelog (https://github.com/amoffat/sh/blob/develop/CHANGELOG.md): 2.0.4 - 5/13/22 - Allow ok_code to be used with fg openembedded#665 - Make sure new_group never creates a new session openembedded#675 2.0.2 / 2.0.3 (misversioned) - 2/13/22 - Performance regression when using a generator with _in openembedded#650 - Adding test support for python 3.11 2.0.0 - 2/9/22 - Executed commands now return a unicode string by default - Removed magical module-like execution contexts openembedded#636 - Added basic asyncio support via _async - Dropped support for Python < 3.8 - Bumped default tty size to more standard (24, 80) - First argument being a RunningCommand no longer automatically passes it as stdin - RunningCommand.__eq__ no longer has the side effect of executing the command openembedded#518 - _tee now supports both "err" and "out" openembedded#215 - Removed the builtin override cd link - Altered process launching model to behave more expectedly openembedded#495 - Bugfix where _no_out isn't allowed with _iter="err" openembedded#638 - Allow keyword arguments to have a list of values openembedded#529 Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The missing
returnstatement leads to aSIGABRT.Signed-off-by: Leif Middelschulte Leif.Middelschulte@klsmartin.com