Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 449d3f08 authored by Yunlian Jiang's avatar Yunlian Jiang
Browse files

Fix memory leak warning.

This CL eliminates the following compiler warning:

MediaPlayerFactory.cpp:249:27: warning: Potential memory leak

Bug: None
Test: After this change the warning is gone.
Change-Id: I09e7ec5cc3bc84decfea2456550b532aac55d26f
parent 66688d88
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -246,8 +246,12 @@ void MediaPlayerFactory::registerBuiltinFactories() {
    if (sInitComplete)
        return;

    registerFactory_l(new NuPlayerFactory(), NU_PLAYER);
    registerFactory_l(new TestPlayerFactory(), TEST_PLAYER);
    IFactory* factory = new NuPlayerFactory();
    if (registerFactory_l(factory, NU_PLAYER) != OK)
        delete factory;
    factory = new TestPlayerFactory();
    if (registerFactory_l(factory, TEST_PLAYER) != OK)
        delete factory;

    sInitComplete = true;
}