This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sbt
Recipients Esa.Peuha, pitrou, r.david.murray, sbt, tim.golden, tim.peters, vstinner, Пётр.Дёмин
Date 2013-10-14.20:59:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381784355.87.0.915751048082.issue19246@psf.upfronthosting.co.za>
In-reply-to
Content
After running ugly_hack(), trying to malloc a largeish block (1MB) fails:

int main(void)
{
    int first;
    void *ptr;

    ptr = malloc(1024*1024);
    assert(ptr != NULL);        /* succeeds */
    free(ptr);

    first = ugly_hack();

    ptr = malloc(1024*1024);
    assert(ptr != NULL);        /* fails */
    free(ptr);

    return 0;
}
History
Date User Action Args
2013-10-14 20:59:15sbtsetrecipients: + sbt, tim.peters, pitrou, vstinner, tim.golden, r.david.murray, Esa.Peuha, Пётр.Дёмин
2013-10-14 20:59:15sbtsetmessageid: <1381784355.87.0.915751048082.issue19246@psf.upfronthosting.co.za>
2013-10-14 20:59:15sbtlinkissue19246 messages
2013-10-14 20:59:15sbtcreate