You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2026-06-20 01:17:49 +02:00
Fix missing return in FUNCTION_LOG_RETURN_VOID().
This macro is only ever called last in functions so this is not an active issue, but it makes sense to fix since it would pose a risk for future development.
This commit is contained in:
@@ -164,6 +164,17 @@
|
||||
|
||||
<p>Improve hex encode performance with bytewise lookup.</p>
|
||||
</release-item>
|
||||
|
||||
<release-item>
|
||||
<github-pull-request id="2581"/>
|
||||
|
||||
<release-item-contributor-list>
|
||||
<release-item-contributor id="yegor.zhmak"/>
|
||||
<release-item-reviewer id="david.steele"/>
|
||||
</release-item-contributor-list>
|
||||
|
||||
<p>Fix missing <code>return</code> in <code>FUNCTION_LOG_RETURN_VOID()</code>.</p>
|
||||
</release-item>
|
||||
</release-development-list>
|
||||
</release-core-list>
|
||||
|
||||
|
||||
@@ -339,6 +339,7 @@ Macros to return function results (or void)
|
||||
STACK_TRACE_POP(false); \
|
||||
\
|
||||
LOG(FUNCTION_LOG_LEVEL(), 0, "=> void"); \
|
||||
return; \
|
||||
} \
|
||||
while (0)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user