Changeset 31157

Show
Ignore:
Timestamp:
03/14/09 00:33:47 (4 years ago)
Author:
syo68k
Message:

エラーチェックを少し強化

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/vb2005/Tween/Tween/MyCommon.vb

    r31082 r31157  
    222222        Dim IDNConverter As New IdnMapping 
    223223 
     224        If Not input.Contains("://") Then Return Nothing 
     225 
    224226        ' ドメイン名をPunycode展開 
    225         Dim Domain As String = input.Split("/"c)(2) 
     227        Dim Domain As String 
    226228        Dim AsciiDomain As String 
    227229 
    228230        Try 
     231            Domain = input.Split("/"c)(2) 
    229232            AsciiDomain = IDNConverter.GetAscii(Domain) 
    230233        Catch ex As Exception