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

util_sscanf_int treats empty string as 0 without errors #959

Open
eivindjahren opened this issue Mar 19, 2024 · 0 comments
Open

util_sscanf_int treats empty string as 0 without errors #959

eivindjahren opened this issue Mar 19, 2024 · 0 comments
Labels

Comments

@eivindjahren
Copy link
Collaborator

util_sscanf_int("", &value) returns ok, with value set to 0. This is has the effect that

from resdata import ResdataUtil

def test_failure():
    data_contents = "PARALLEL '' /\n"
    with open("TEST.DATA", "w") as f:
        f.write(data_contents)
    print(ResdataUtil.get_num_cpu("TEST.DATA"))

prints 0 rather than 1.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: No status
Development

No branches or pull requests

1 participant