Re: [PATCH] isdn: eicon: free pointer after using it in log msg in divas_um_idi_delete_entity()

2013-10-02 Thread David Miller
From: Jesper Juhl Date: Mon, 30 Sep 2013 21:25:27 +0200 (CEST) > Not really a problem, but nice IMHO; the Coverity static analyzer > complains that we use the pointer 'e' after it has been freed, so move > the freeing below the final use, even if that use is just using the > value of the pointer

Re: [PATCH] isdn: eicon: free pointer after using it in log msg in divas_um_idi_delete_entity()

2013-10-02 Thread David Miller
From: Jesper Juhl j...@chaosbits.net Date: Mon, 30 Sep 2013 21:25:27 +0200 (CEST) Not really a problem, but nice IMHO; the Coverity static analyzer complains that we use the pointer 'e' after it has been freed, so move the freeing below the final use, even if that use is just using the value

[PATCH] isdn: eicon: free pointer after using it in log msg in divas_um_idi_delete_entity()

2013-09-30 Thread Jesper Juhl
Not really a problem, but nice IMHO; the Coverity static analyzer complains that we use the pointer 'e' after it has been freed, so move the freeing below the final use, even if that use is just using the value of the pointer and not actually dereferencing it. Signed-off-by: Jesper Juhl ---

[PATCH] isdn: eicon: free pointer after using it in log msg in divas_um_idi_delete_entity()

2013-09-30 Thread Jesper Juhl
Not really a problem, but nice IMHO; the Coverity static analyzer complains that we use the pointer 'e' after it has been freed, so move the freeing below the final use, even if that use is just using the value of the pointer and not actually dereferencing it. Signed-off-by: Jesper Juhl