[Bro-Dev] [JIRA] (BIT-1280) Checking index in vectors is broken

Jon Siwek (JIRA) jira at bro-tracker.atlassian.net
Tue Oct 28 07:30:07 PDT 2014


     [ https://bro-tracker.atlassian.net/browse/BIT-1280?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jon Siwek updated BIT-1280:
---------------------------
    Description: 
If you try to check an index in a vector for existence, you get an error...

{noformat}
event bro_init()
	{
	local vec: vector of count = vector();
	if ( 2 in vec )
		print vec[2];
	print vec;
	}
{noformat}

Error:
{quote}
fatal error in bool: BroType::AsVectorType (bool/vector) (bool)
{quote}

  was:
If you try to check an index in a vector for existence, you get an error...

{quote}
event bro_init()
	{
	local vec: vector of count = vector();
	if ( 2 in vec )
		print vec[2];
	print vec;
	}
{quote}

Error:
{quote}
fatal error in bool: BroType::AsVectorType (bool/vector) (bool)
{quote}


> Checking index in vectors is broken
> -----------------------------------
>
>                 Key: BIT-1280
>                 URL: https://bro-tracker.atlassian.net/browse/BIT-1280
>             Project: Bro Issue Tracker
>          Issue Type: Problem
>          Components: Bro
>    Affects Versions: 2.4
>            Reporter: Seth Hall
>
> If you try to check an index in a vector for existence, you get an error...
> {noformat}
> event bro_init()
> 	{
> 	local vec: vector of count = vector();
> 	if ( 2 in vec )
> 		print vec[2];
> 	print vec;
> 	}
> {noformat}
> Error:
> {quote}
> fatal error in bool: BroType::AsVectorType (bool/vector) (bool)
> {quote}



--
This message was sent by Atlassian JIRA
(v6.4-OD-07-004#64005)


More information about the bro-dev mailing list