null initialization 10/70510/1
authorSooChan Lim <sc1.lim@samsung.com>
Thu, 19 May 2016 08:42:58 +0000 (17:42 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Thu, 19 May 2016 08:42:58 +0000 (17:42 +0900)
fix the build warning

Change-Id: I6377b63cff5da7953a91eb91c6bf23204d5b3416

src/backend.c

index 13f705f..8749f57 100644 (file)
@@ -59,7 +59,7 @@ load_backend(const struct backend_desc *backend)
 {
    char path[PATH_MAX];
    const void *init = NULL;
-   void *module;
+   void *module = NULL;
    const char *name;
    const char *entrypoint = "gbm_backend";