[Title] Resolved an error of a logic for checking Qualcomm device in evas
authorHaegeun Park <haegeun.park@samsung.com>
Wed, 2 Oct 2013 09:59:01 +0000 (02:59 -0700)
committerHaegeun Park <haegeun.park@samsung.com>
Wed, 2 Oct 2013 09:59:01 +0000 (02:59 -0700)
[Issue#]
[Problem]
[Cause] Segfaults in evas
[Solution]
- Now works.

src/modules/fastpath/coregl_fastpath_gl.c

index 618bf5a..fbe1b77 100644 (file)
@@ -337,6 +337,15 @@ fastpath_glGetString(GLenum name)
                        }
                        ret = string_extensions;
                        break;
+               default:
+                       IF_GL_SUCCESS(ret = (const char *)_orig_fastpath_glGetString(name))
+                       {
+                       }
+                       else
+                       {
+                               ret = NULL;
+                       }
+                       break;
        }
 
        goto finish;