View | Details | Raw Unified | Return to bug 588143
Collapse All | Expand All

(-)mono/utils/mono-dl.c (-2 / +2 lines)
Lines 453-461 Link Here
453
	else
453
	else
454
		suffix = suffixes [idx];
454
		suffix = suffixes [idx];
455
	if (directory && *directory)
455
	if (directory && *directory)
456
		res = g_strconcat (directory, G_DIR_SEPARATOR_S, prefix, name, suffixes [idx], NULL);
456
		res = g_strconcat (directory, G_DIR_SEPARATOR_S, prefix, name, suffix, NULL);
457
	else
457
	else
458
		res = g_strconcat (prefix, name, suffixes [idx], NULL);
458
		res = g_strconcat (prefix, name, suffix, NULL);
459
	++idx;
459
	++idx;
460
	*iter = GUINT_TO_POINTER (idx);
460
	*iter = GUINT_TO_POINTER (idx);
461
	return res;
461
	return res;
(-)mono/utils/ChangeLog (+6 lines)
Lines 1-3 Link Here
1
2010-03-24  Andrés G. Aragoneses  <knocte@gmail.com>
2
3
	* mono-dl.c: (mono_dl_build_path) Take in account the suffix
4
	variable assigned wrt the prefix comparison to concat the final
5
	path for dlopen. Fixes BNC#588143.
6
1
2010-02-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
7
2010-02-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
2
8
3
	* mono-semaphore.h: enable the #defines when io-layer is in use.
9
	* mono-semaphore.h: enable the #defines when io-layer is in use.

Return to bug 588143