diff options
author | Yang Tse <yangsita@gmail.com> | 2010-02-05 20:52:00 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-02-05 20:52:00 +0000 |
commit | 2c2464a68211fb788b21de50a51798baa57423be (patch) | |
tree | b8e6ae4574bdeb29103894e5d711cd4559b0a11a | |
parent | 880452d2edbeb3b42fd2c8794b045b3cc640a255 (diff) |
fix compiler warning
-rw-r--r-- | tests/libtest/lib569.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib569.c b/tests/libtest/lib569.c index 815ca3a71..9b345b065 100644 --- a/tests/libtest/lib569.c +++ b/tests/libtest/lib569.c @@ -27,7 +27,7 @@ int test(char *URL) { int res; CURL *curl; - char *stream_uri; + char *stream_uri = NULL; char *rtsp_session_id; int request=1; int i; |