mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
a1569c5495
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
26 lines
1.4 KiB
Diff
26 lines
1.4 KiB
Diff
--- src/MACLib/APELink.cpp 2006-06-01 13:00:57.000000000 +0400
|
|
+++ src/MACLib/APELink.cpp 2009-06-15 00:31:36.081731282 +0400
|
|
@@ -63,10 +63,10 @@
|
|
if (pData != NULL)
|
|
{
|
|
// parse out the information
|
|
- char * pHeader = strstr(pData, APE_LINK_HEADER);
|
|
- char * pImageFile = strstr(pData, APE_LINK_IMAGE_FILE_TAG);
|
|
- char * pStartBlock = strstr(pData, APE_LINK_START_BLOCK_TAG);
|
|
- char * pFinishBlock = strstr(pData, APE_LINK_FINISH_BLOCK_TAG);
|
|
+ const char * pHeader = strstr(pData, APE_LINK_HEADER);
|
|
+ const char * pImageFile = strstr(pData, APE_LINK_IMAGE_FILE_TAG);
|
|
+ const char * pStartBlock = strstr(pData, APE_LINK_START_BLOCK_TAG);
|
|
+ const char * pFinishBlock = strstr(pData, APE_LINK_FINISH_BLOCK_TAG);
|
|
|
|
if (pHeader && pImageFile && pStartBlock && pFinishBlock)
|
|
{
|
|
@@ -81,7 +81,7 @@
|
|
|
|
// get the path
|
|
char cImageFile[MAX_PATH + 1]; int nIndex = 0;
|
|
- char * pImageCharacter = &pImageFile[strlen(APE_LINK_IMAGE_FILE_TAG)];
|
|
+ const char * pImageCharacter = &pImageFile[strlen(APE_LINK_IMAGE_FILE_TAG)];
|
|
while ((*pImageCharacter != 0) && (*pImageCharacter != '\r') && (*pImageCharacter != '\n'))
|
|
cImageFile[nIndex++] = *pImageCharacter++;
|
|
cImageFile[nIndex] = 0;
|