[erlang-patches] Fixes TypEr crash when doing old files cleanup

Ricardo Catalinas Jiménez jimenezrick@REDACTED
Sun Sep 25 01:44:28 CEST 2011


Please fetch:
    git fetch git://github.com/jimenezrick/otp.git fix-typer-delete


* One commit in this branch:

I reported this bug some months ago. Kostis Sagonas acknowledged that
there was a bug but not action was taken. So I would like to insist
politely that a fix should be included for this silly bug.

The bug is very simple and the solution *does not alter* in any way the
core functionality of TypEr.

The thing is that when TypEr starts, it tries to clean up the old files
generated by itself, but if any of those files is not there, TypEr will
crash because of this:

    ok = file:delete(OldFile)

So, it is as simple as to replace that line with:

    file:delete(OldFile)

Thanks in advance.
-- 
Ricardo (http://r.untroubled.be/)



More information about the erlang-patches mailing list