PR other/67652
authoriverbin <iverbin@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Sep 2015 16:10:16 +0000 (16:10 +0000)
committeriverbin <iverbin@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Sep 2015 16:10:16 +0000 (16:10 +0000)
liboffloadmic/
* runtime/offload_engine.cpp (Engine::init_process): Fix sizeof.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@228210 138bc75d-0d04-0410-961f-82ee72b054a4

liboffloadmic/ChangeLog
liboffloadmic/runtime/offload_engine.cpp

index 4a726c8..130026d 100644 (file)
@@ -1,3 +1,8 @@
+2015-09-28  Ilya Verbin  <ilya.verbin@intel.com>
+
+       PR other/67652
+       * runtime/offload_engine.cpp (Engine::init_process): Fix sizeof.
+
 2015-09-08  Ilya Verbin  <ilya.verbin@intel.com>
 
        * Makefile.am (liboffloadmic_host_la_DEPENDENCIES): Remove libcoi_host
index 16b440d..00b673a 100644 (file)
@@ -173,7 +173,7 @@ void Engine::init_process(void)
             // use putenv instead of setenv as Windows has no setenv.
             // Note: putenv requires its argument can't be freed or modified.
             // So no free after call to putenv or elsewhere.
-            char * env_var = (char*) malloc(sizeof("COI_DMA_CHANNEL_COUNT=2" + 1));
+            char * env_var = (char*) malloc(sizeof("COI_DMA_CHANNEL_COUNT=2"));
             sprintf(env_var, "COI_DMA_CHANNEL_COUNT=2");
             putenv(env_var);  
         }