• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

TiMidity++ 改造版 (Windows 専用)


コミットメタ情報

リビジョン592b790b9e08fe565ed35fb4dc9db9394c3826df (tree)
日時2011-12-04 01:00:04
作者Shoichi Tamuki <tamuki@line...>
コミッターShoichi Tamuki

ログメッセージ

[PATCH 16/17] Silence dlsym errors

The way the new dynamic_interface_module() function probes for dynamic
interfaces cause it to always hit a few dlsym errors as soon as you have
more then one dynamic interface, so silence these errors.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---

timidity/dl_dlopen.c | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)

変更サマリ

差分

--- a/ChangeLog
+++ b/ChangeLog
@@ -76,6 +76,11 @@
7676 if it were the old version, if that code path where to ever
7777 be invoked bad things (tm) would happen. Luckily it is never
7878 used, so simply nuke it. (autoreconf by TAMUKI Shoichi)
79+ * timidity/dl_dlopen.c: [PATCH 16/17] Silence dlsym errors
80+ The way the new dynamic_interface_module() function probes
81+ for dynamic interfaces cause it to always hit a few dlsym
82+ errors as soon as you have more then one dynamic interface,
83+ so silence these errors.
7984
8085 2010-09-19 Kentaro Sato <kentaro@ranvis.com>
8186
--- a/timidity/dl_dlopen.c
+++ b/timidity/dl_dlopen.c
@@ -72,8 +72,6 @@ void *dl_find_symbol(void *libhandle, char *symbolname)
7272 #endif
7373
7474 RETVAL = dlsym(libhandle, symbolname);
75- if (RETVAL == NULL)
76- fprintf(stderr, "%s\n", dlerror());
7775 return RETVAL;
7876 }
7977