diff options
| author | Mark Rowe <mark@vector35.com> | 2026-05-11 18:49:26 -0700 |
|---|---|---|
| committer | Mark Rowe <mark@vector35.com> | 2026-05-19 10:36:46 -0700 |
| commit | fd40266f767e51e649fb48376e25f47a60d79765 (patch) | |
| tree | db351a36617200d4ad659bb3c1aa921b8d08f204 /pluginmanager.cpp | |
| parent | 297a98bff289ecde90d808f6538c2c5edf804af6 (diff) | |
Fix incorrect reference counting in C++ API
Diffstat (limited to 'pluginmanager.cpp')
| -rw-r--r-- | pluginmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pluginmanager.cpp b/pluginmanager.cpp index 1ce77606..57eac985 100644 --- a/pluginmanager.cpp +++ b/pluginmanager.cpp @@ -297,7 +297,7 @@ bool Extension::AreDependenciesBeingInstalled() const string Extension::GetCreationDate() { - return BNPluginGetCurrentVersionCreationDate(m_object); + RETURN_STRING(BNPluginGetCurrentVersionCreationDate(m_object)); } string Extension::GetProjectData() |
