Skip to content

Commit b95f822

Browse files
committed
Merge remote-tracking branch 'origin/master' into new_libcxx_version
2 parents 1d47420 + e854d08 commit b95f822

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ jobs:
289289
290290
build-macos:
291291
name: build-macos-${{ matrix.arch }}
292-
runs-on: ${{ (matrix.arch == 'arm64' && 'macos-14') || 'macos-12' }}
292+
runs-on: ${{ (matrix.arch == 'arm64' && 'macos-14') || 'macos-13' }}
293293

294294
strategy:
295295
fail-fast: false

src/burp/BurpTasks.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -868,6 +868,7 @@ void RestoreRelationTask::initItem(BurpGlobals* tdgbl, Item& item)
868868
tdgbl->gbl_stat_flags = m_masterGbl->gbl_stat_flags;
869869
tdgbl->verboseInterval = m_masterGbl->verboseInterval;
870870
tdgbl->RESTORE_format = m_masterGbl->RESTORE_format;
871+
tdgbl->runtimeODS = m_masterGbl->runtimeODS;
871872

872873
if (item.m_ownAttach)
873874
{

src/remote/client/interface.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7400,9 +7400,6 @@ static rem_port* analyze(ClntAuthBlock& cBlock, PathName& attach_name, unsigned
74007400
*
74017401
**************************************/
74027402

7403-
rem_port* port = NULL;
7404-
int inet_af = AF_UNSPEC;
7405-
74067403
cBlock.loadClnt(pb, &parSet);
74077404
pb.deleteWithTag(parSet.auth_block);
74087405

@@ -7414,8 +7411,12 @@ static rem_port* analyze(ClntAuthBlock& cBlock, PathName& attach_name, unsigned
74147411
Auth::setLegacySSP(legacySSP);
74157412
#endif
74167413

7414+
rem_port* port;
74177415
while (true)
74187416
{
7417+
port = NULL;
7418+
int inet_af = AF_UNSPEC;
7419+
74197420
authenticateStep0(cBlock);
74207421
const NoCaseString savePluginName(cBlock.plugins.name());
74217422

0 commit comments

Comments
 (0)