mayurAzoi / idoubs

Automatically exported from code.google.com/p/idoubs
0 stars 0 forks source link

Syntax error in idoubs/common-ngn-stack/media/NgnProxyPluginMgr.mm #156

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
There is a syntax error in NgnProxyPluginMgr.mm -- see patch below.

What version of the product or source code revision are you using?

iDoubs r239

Please provide any additional information below.

--- a/iphone/idoubs/common-ngn-stack/media/NgnProxyPluginMgr.mm
+++ b/iphone/idoubs/common-ngn-stack/media/NgnProxyPluginMgr.mm
@@ -77,7 +77,7 @@ public:

                if(!_sPluginMgr){
                        TSK_DEBUG_ERROR("Media engine not initialized");
-                       ret -1;
+                       ret = -1;
                        goto done;
                }

@@ -113,7 +113,7 @@ public:
                        default:
                        {
                                NgnNSLog(TAG, @"Invalid Plugin type");
-                               ret -1;
+                               ret = -1;
                                goto done;
                        }
                }

Original issue reported on code.google.com by phazl...@gmail.com on 11 Jun 2013 at 12:16

GoogleCodeExporter commented 9 years ago
Thanks. Fixed.

Original comment by boss...@yahoo.fr on 11 Jun 2013 at 1:01