ANDROID.RLK.MEDIAPLAYER

RLK (Resource Leak) issues are reported when resources are allocated but not properly disposed after use. An ANDROID.RLK.MEDIAPLAYER warning indicates that a MediaPlayer that was opened is not explicitly closed.

Vulnerability and risk

Resources such as streams, connections and graphic objects must be explicitly closed. The close operation can unblock transactions or flush file changes in the file system. While a resource will eventually be closed by the garbage collector, resource exhaustion can occur before garbage collection starts. Depending on the nature of the resource, various exceptions will be thrown on a failed attempt to allocate another resource, for example: java.io.FileNotFoundException: Too many open files or too many database connections.

Mitigation and prevention

Explicitly close all resources that have the close method, even those that you think are not doing anything significant. Future code changes will then be safe from such errors.

Example 1

Copy
     public boolean onKeyDown(final int keyCode, final KeyEvent event) {
         if (keyCode == KeyEvent.KEYCODE_DPAD_CENTER) {
             final MediaPlayer player = MediaPlayer.create(this, ringtoneUri);
             player.start();
 
         }
         return super.onKeyDown(keyCode, event);
     }

ANDROID.RLK.CAMERA is reported for the snippet on line 25: 'player' is not released on exit.

Extension

This checker can be extended through the Klocwork knowledge base. See Tuning Java analysis for more information.