Mozilla-generated shortcuts use unix-style eol (103466). patch by Daniel Mario Vega <dv5a@dc.uba.ar>. r=pink sr=blake

This commit is contained in:
blakeross%telocity.com 2001-10-15 22:26:20 +00:00
Родитель a3486db352
Коммит 36a9a8f646
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -525,7 +525,7 @@ nsDataObj :: GetFileContentsInternetShortcut ( FORMATETC& aFE, STGMEDIUM& aSTG )
fmetc.cfFormat = RegisterClipboardFormat ( CFSTR_FILECONTENTS );
// create a global memory area and build up the file contents w/in it
static const char* shortcutFormatStr = "[InternetShortcut]\nURL=%s\n";
static const char* shortcutFormatStr = "[InternetShortcut]\nURL=%s\r\n";
static const int formatLen = strlen(shortcutFormatStr) - 2; // don't include %s in the len
const int totalLen = formatLen + strlen(urlStr) + 1;
HGLOBAL hGlobalMemory = ::GlobalAlloc(GMEM_SHARE, totalLen);