]> git.sesse.net Git - vlc/blobdiff - activex/persistpropbag.cpp
image.c: ImageReadUrl now tries to open the image using the stream functions if fopen...
[vlc] / activex / persistpropbag.cpp
index 1f036f06d02298000177205e49bb4183e9975946..dccb1d4ac0edf6c63b5c9ba824bac604d47f6aa9 100644 (file)
@@ -17,7 +17,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #include "plugin.h"
@@ -198,7 +198,8 @@ STDMETHODIMP VLCPersistPropertyBag::Save(LPPROPERTYBAG pPropBag, BOOL fClearDirt
     pPropBag->Write(OLESTR("ExtentHeight"), &value);
 
     V_VT(&value) = VT_BSTR;
-    V_BSTR(&value) = SysAllocString(_p_instance->getMRL());
+    V_BSTR(&value) = SysAllocStringLen(_p_instance->getMRL(),
+                            SysStringLen(_p_instance->getMRL()));
     pPropBag->Write(OLESTR("MRL"), &value);
     VariantClear(&value);