Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

inf.c/get_counts buffer overrun [CORE391] #734

Closed
firebird-automations opened this issue Apr 23, 2003 · 4 comments
Closed

inf.c/get_counts buffer overrun [CORE391] #734

firebird-automations opened this issue Apr 23, 2003 · 4 comments

Comments

@firebird-automations
Copy link
Collaborator

Submitted by: loa (loa)

SFID: 725898#⁠
Submitted By: loa

inf.c/get_counts has buffer overrun in simple "for"

for (relation_id = 0, ptr = vector->vcl_long;
relation_id < vector->vcl_count && buffer < end;
++relation_id)

fix is:

for (relation_id = 0, ptr = vector->vcl_long;
relation_id < vector->vcl_count && p < end;
++relation_id)

@firebird-automations
Copy link
Collaborator Author

Commented by: Alice F. Bird (firebirds)

Date: 2003-04-23 09:34
Sender: alexpeshkoff
Logged In: YES
user_id=423445

Confirmed and fixed

@firebird-automations
Copy link
Collaborator Author

Modified by: @pcisar

Workflow: jira [ 10415 ] => Firebird [ 14685 ]

@firebird-automations
Copy link
Collaborator Author

Modified by: @pavel-zotov

QA Status: No test

@firebird-automations
Copy link
Collaborator Author

Modified by: @pavel-zotov

status: Closed [ 6 ] => Closed [ 6 ]

QA Status: No test => Cannot be tested

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants