upnp/upnpstack/controlpointbase/src/upnpcpbdescriptionagent.cpp
branchRCL_3
changeset 30 594d15129e2c
parent 29 5c72fd91570d
--- a/upnp/upnpstack/controlpointbase/src/upnpcpbdescriptionagent.cpp	Tue Aug 31 16:06:48 2010 +0300
+++ b/upnp/upnpstack/controlpointbase/src/upnpcpbdescriptionagent.cpp	Wed Sep 01 12:27:00 2010 +0100
@@ -215,7 +215,7 @@
             RBuf8 description;
             if(deviceDescription->UrlBase().Length()!=0)
                 {
-                description.CreateL(aDeviceDescPath.Length()+deviceDescription->UrlBase().Length());
+                description.Create(aDeviceDescPath.Length()+deviceDescription->UrlBase().Length());
                 description.Copy(deviceDescription->UrlBase());
                 TInt firstSlash(aDeviceDescPath.Locate( KSlash8()[0] ) );		
                 if(firstSlash==0)
@@ -228,7 +228,7 @@
             else
                 {
                 TBuf<25> ipBuf;
-                description.CreateL(KUrlMaxLength);
+                description.Create(KUrlMaxLength);
                 description.Copy(KHttp());
                 
                 aAddr.Output ( ipBuf);