Skip to content

core.stdc.stdio.snprintf returns wrong value if the buffer is not sufficiently large #98

@mdparker

Description

@mdparker

ogion.art reported this on 2021-09-02T12:09:26Z

Transfered from https://issues.dlang.org/show_bug.cgi?id=22266

Description

According to C99 specification, if the buffer is not sufficiently large, snprintf should still return the number of characters that would have been written. However, the implementation that DMD uses by default on Windows returns -1 instead.

void main() {
    import core.stdc.stdio;
    auto n = snprintf(null, 0, "test");
    assert(n == 4); //fails 
}

Comments

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions