msxml3: Added ISAXAttributes_getValue implementation.
diff --git a/dlls/msxml3/saxreader.c b/dlls/msxml3/saxreader.c
index e57bf6c..5a64e2b 100644
--- a/dlls/msxml3/saxreader.c
+++ b/dlls/msxml3/saxreader.c
@@ -382,9 +382,14 @@
         int *nValue)
 {
     saxattributes *This = impl_from_ISAXAttributes( iface );
+    TRACE("(%p)->(%d)\n", This, nIndex);
 
-    FIXME("(%p)->(%d) stub\n", This, nIndex);
-    return E_NOTIMPL;
+    if(nIndex >= This->nb_attributes) return E_INVALIDARG;
+
+    *nValue = SysStringLen(This->szValue[nIndex]);
+    *pValue = This->szValue[nIndex];
+
+    return S_OK;
 }
 
 static HRESULT WINAPI isaxattributes_getValueFromName(
@@ -544,8 +549,6 @@
     HRESULT hr;
     saxattributes *attr;
 
-    FIXME("Arguments processing not yet implemented.\n");
-
     update_position(This, (xmlChar*)This->pParserCtxt->input->cur+1);
 
     if(This->saxreader->contentHandler)