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:
parent
11d667ecf2
commit
e308942369
@ -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
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user