1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-23 19:57:21 +01:00

fixed SF bug 2973221 "single rule compile (x) results in sigsegv".

This commit is contained in:
Vadim Kurland 2010-03-19 22:49:48 +00:00
parent 11d667ecf2
commit e308942369
3 changed files with 6 additions and 2 deletions

View File

@ -1 +1 @@
#define BUILD_NUM 2741
#define BUILD_NUM 2742

View File

@ -1,5 +1,8 @@
2010-03-19 vadim <vadim@vk.crocodile.org>
* CompilerDriverFactory.cpp (CompilerDriverFactory::createCompilerDriver):
fixed SF bug 2973221 "single rule compile (x) results in sigsegv".
* SSHCisco.cpp (SSHCisco::stateMachine): fixed SF bug 2973136,
fwbuilder bug #1347: ssh 'cancel' rule install sigsegv. Installer
caused GUI crash if user hit "Cancel" at just the right

View File

@ -51,7 +51,8 @@ CompilerDriver* CompilerDriverFactory::createCompilerDriver(Firewall *fw)
if (platform == "ipf") return new CompilerDriver_ipf(fw->getRoot());
if (platform == "ipfw") return new CompilerDriver_ipfw(fw->getRoot());
if (platform == "iosacl") return new CompilerDriver_iosacl(fw->getRoot());
if (platform == "pix") return new CompilerDriver_pix(fw->getRoot());
if (platform == "pix" || platform == "fwsm")
return new CompilerDriver_pix(fw->getRoot());
return NULL;
}